From 5fbc52e5756dc1985974a8a5705707e7be5820b1 Mon Sep 17 00:00:00 2001 From: Dmitrii Shatokhin Date: Fri, 26 Dec 2025 18:50:58 +0100 Subject: [PATCH 1/4] feat(perf): add opt-in parallelism; make core optimizations - Add project-level parallel builds via GRIMOIRE_CSS_JOBS (default 1 = sequential) - Avoid redundant optimization passes; reduce allocations in parsing/spell pipeline - Keep correctness: preserve dedup semantics and add regression coverage - Docs: describe GRIMOIRE_CSS_JOBS and time/peak-memory trade-offs --- Cargo.lock | 718 +- Cargo.toml | 26 +- README.md | 15 + benchmark/.python-version | 1 + benchmark/__pycache__/main.cpython-314.pyc | Bin 0 -> 11776 bytes .../benchmark_formatter.cpython-314.pyc | Bin 0 -> 12513 bytes .../metrics_collector.cpython-314.pyc | Bin 0 -> 34543 bytes .../project_creator.cpython-314.pyc | Bin 0 -> 6400 bytes .../report_generator.cpython-314.pyc | Bin 0 -> 17274 bytes benchmark/core/metrics_collector.py | 204 +- benchmark/core/report_generator.py | 29 + benchmark/dhat-heap.json | 73288 ++++++++++++++++ benchmark/main.py | 23 + benchmark/results/result_20251226_155808.json | 137 + benchmark/results/result_20251226_155808.txt | 123 + .../result_20251226_155808_pretty.json | 118 + benchmark/results/result_20251226_155838.json | 137 + benchmark/results/result_20251226_155838.txt | 123 + .../result_20251226_155838_pretty.json | 118 + benchmark/results/result_20251226_155901.json | 137 + benchmark/results/result_20251226_155901.txt | 123 + .../result_20251226_155901_pretty.json | 118 + benchmark/results/result_20251226_155926.json | 137 + benchmark/results/result_20251226_155926.txt | 123 + .../result_20251226_155926_pretty.json | 118 + src/commands/shorten.rs | 20 +- src/core/css_builder/css_builder_base.rs | 332 +- src/core/css_builder/css_builder_fs.rs | 389 +- src/core/css_builder/css_builder_in_memory.rs | 18 +- src/core/css_generator/color_functions.rs | 17 +- src/core/css_generator/css_generator_base.rs | 85 +- src/core/grimoire_css_error.rs | 2 +- src/core/parser/parser_base.rs | 12 +- src/core/parser/parser_fs.rs | 125 +- src/core/source_file.rs | 12 +- src/core/spell.rs | 302 +- src/core/spell_value_validator.rs | 6 - src/infrastructure/diagnostics.rs | 26 +- src/infrastructure/lightning_css_optimizer.rs | 8 +- src/infrastructure/mod.rs | 4 +- src/lib.rs | 6 +- src/main.rs | 10 + 42 files changed, 76377 insertions(+), 813 deletions(-) create mode 100644 benchmark/.python-version create mode 100644 benchmark/__pycache__/main.cpython-314.pyc create mode 100644 benchmark/core/__pycache__/benchmark_formatter.cpython-314.pyc create mode 100644 benchmark/core/__pycache__/metrics_collector.cpython-314.pyc create mode 100644 benchmark/core/__pycache__/project_creator.cpython-314.pyc create mode 100644 benchmark/core/__pycache__/report_generator.cpython-314.pyc create mode 100644 benchmark/dhat-heap.json create mode 100644 benchmark/results/result_20251226_155808.json create mode 100644 benchmark/results/result_20251226_155808.txt create mode 100644 benchmark/results/result_20251226_155808_pretty.json create mode 100644 benchmark/results/result_20251226_155838.json create mode 100644 benchmark/results/result_20251226_155838.txt create mode 100644 benchmark/results/result_20251226_155838_pretty.json create mode 100644 benchmark/results/result_20251226_155901.json create mode 100644 benchmark/results/result_20251226_155901.txt create mode 100644 benchmark/results/result_20251226_155901_pretty.json create mode 100644 benchmark/results/result_20251226_155926.json create mode 100644 benchmark/results/result_20251226_155926.txt create mode 100644 benchmark/results/result_20251226_155926_pretty.json diff --git a/Cargo.lock b/Cargo.lock index 11c6a8a..dfb8052 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -23,19 +23,19 @@ version = "0.7.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" dependencies = [ - "getrandom", + "getrandom 0.2.16", "once_cell", "version_check", ] [[package]] name = "ahash" -version = "0.8.11" +version = "0.8.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" +checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" dependencies = [ "cfg-if", - "getrandom", + "getrandom 0.3.4", "once_cell", "serde", "version_check", @@ -44,19 +44,13 @@ dependencies = [ [[package]] name = "aho-corasick" -version = "1.0.5" +version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c378d78423fdad8089616f827526ee33c19f2fddbd5de1629152c9593ba4783" +checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" dependencies = [ "memchr", ] -[[package]] -name = "android-tzdata" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" - [[package]] name = "android_system_properties" version = "0.1.5" @@ -118,9 +112,9 @@ dependencies = [ [[package]] name = "autocfg" -version = "1.4.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" +checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" [[package]] name = "backtrace" @@ -157,9 +151,9 @@ dependencies = [ [[package]] name = "bitflags" -version = "2.6.0" +version = "2.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" +checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" [[package]] name = "bitvec" @@ -173,29 +167,38 @@ dependencies = [ "wyz", ] +[[package]] +name = "browserslist-data" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e977366ea69a6e756ae616c0d5def0da9a3521fca5f91f447fdf613c928a15a" +dependencies = [ + "ahash 0.8.12", + "chrono", +] + [[package]] name = "browserslist-rs" -version = "0.16.0" +version = "0.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fdf0ca73de70c3da94e4194e4a01fe732378f55d47cf4c0588caab22a0dbfa14" +checksum = "8dd48a6ca358df4f7000e3fb5f08738b1b91a0e5d5f862e2f77b2b14647547f5" dependencies = [ - "ahash 0.8.11", + "ahash 0.8.12", + "browserslist-data", "chrono", "either", - "indexmap", "itertools 0.13.0", "nom", - "once_cell", "serde", "serde_json", - "thiserror", + "thiserror 1.0.69", ] [[package]] name = "bumpalo" -version = "3.16.0" +version = "3.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" +checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" [[package]] name = "bytecheck" @@ -219,43 +222,37 @@ dependencies = [ "syn 1.0.109", ] -[[package]] -name = "byteorder" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" - [[package]] name = "bytes" -version = "1.7.2" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "428d9aa8fbc0670b7b8d6030a7fadd0f86151cae55e4dbbece15f3780a3dfaf3" +checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3" [[package]] name = "cc" -version = "1.1.21" +version = "1.2.50" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07b1695e2c7e8fc85310cde85aeaab7e3097f593c91d209d3f9df76c928100f0" +checksum = "9f50d563227a1c37cc0a263f64eca3334388c01c5e4c4861a9def205c614383c" dependencies = [ + "find-msvc-tools", "shlex", ] [[package]] name = "cfg-if" -version = "1.0.0" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" [[package]] name = "chrono" -version = "0.4.38" +version = "0.4.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" +checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" dependencies = [ - "android-tzdata", "iana-time-zone", "num-traits", - "windows-targets 0.52.6", + "windows-link", ] [[package]] @@ -289,7 +286,7 @@ dependencies = [ "heck", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.111", ] [[package]] @@ -306,15 +303,15 @@ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" [[package]] name = "console" -version = "0.15.8" +version = "0.16.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" +checksum = "03e45a4a8926227e4197636ba97a9fc9b00477e9f4bd711395687c5f0734bec4" dependencies = [ "encode_unicode", - "lazy_static", "libc", - "unicode-width 0.1.14", - "windows-sys 0.52.0", + "once_cell", + "unicode-width 0.2.2", + "windows-sys 0.61.2", ] [[package]] @@ -354,9 +351,9 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" [[package]] name = "crossbeam-deque" -version = "0.8.5" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" +checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" dependencies = [ "crossbeam-epoch", "crossbeam-utils", @@ -373,9 +370,9 @@ dependencies = [ [[package]] name = "crossbeam-utils" -version = "0.8.20" +version = "0.8.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" +checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" [[package]] name = "cssparser" @@ -386,7 +383,7 @@ dependencies = [ "cssparser-macros", "dtoa-short", "itoa", - "phf 0.11.2", + "phf", "smallvec", ] @@ -406,7 +403,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" dependencies = [ "quote", - "syn 2.0.87", + "syn 2.0.111", ] [[package]] @@ -424,9 +421,9 @@ dependencies = [ [[package]] name = "data-encoding" -version = "2.6.0" +version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" +checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" [[package]] name = "data-url" @@ -437,11 +434,27 @@ dependencies = [ "matches", ] +[[package]] +name = "dhat" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "98cd11d84628e233de0ce467de10b8633f4ddaecafadefc86e13b84b8739b827" +dependencies = [ + "backtrace", + "lazy_static", + "mintex", + "parking_lot", + "rustc-hash 1.1.0", + "serde", + "serde_json", + "thousands", +] + [[package]] name = "dtoa" -version = "1.0.9" +version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653" +checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04" [[package]] name = "dtoa-short" @@ -454,21 +467,21 @@ dependencies = [ [[package]] name = "either" -version = "1.13.0" +version = "1.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" +checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" [[package]] name = "encode_unicode" -version = "0.3.6" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" +checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" [[package]] name = "equivalent" -version = "1.0.1" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" +checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" [[package]] name = "errno" @@ -477,14 +490,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" dependencies = [ "libc", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] name = "fastrand" -version = "2.1.1" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" + +[[package]] +name = "find-msvc-tools" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6" +checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844" [[package]] name = "funty" @@ -493,23 +512,26 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" [[package]] -name = "fxhash" -version = "0.2.1" +name = "getrandom" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" +checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" dependencies = [ - "byteorder", + "cfg-if", + "libc", + "wasi", ] [[package]] name = "getrandom" -version = "0.2.15" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" +checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" dependencies = [ "cfg-if", "libc", - "wasi", + "r-efi", + "wasip2", ] [[package]] @@ -520,15 +542,16 @@ checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7" [[package]] name = "glob" -version = "0.3.1" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" +checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" [[package]] name = "grimoire_css" version = "1.6.0" dependencies = [ "console", + "dhat", "glob", "grimoire_css_color_toolkit", "indicatif", @@ -540,7 +563,7 @@ dependencies = [ "serde", "serde_json", "tempfile", - "thiserror", + "thiserror 2.0.17", ] [[package]] @@ -567,6 +590,12 @@ version = "0.14.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" +[[package]] +name = "hashbrown" +version = "0.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" + [[package]] name = "heck" version = "0.5.0" @@ -575,14 +604,15 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" [[package]] name = "iana-time-zone" -version = "0.1.61" +version = "0.1.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220" +checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" dependencies = [ "android_system_properties", "core-foundation-sys", "iana-time-zone-haiku", "js-sys", + "log", "wasm-bindgen", "windows-core", ] @@ -598,35 +628,27 @@ dependencies = [ [[package]] name = "indexmap" -version = "2.5.0" +version = "2.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68b900aa2f7301e21c36462b170ee99994de34dff39a4a6a528e80e7376d07e5" +checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2" dependencies = [ "equivalent", - "hashbrown 0.14.5", + "hashbrown 0.16.1", "serde", + "serde_core", ] [[package]] name = "indicatif" -version = "0.17.8" +version = "0.18.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "763a5a8f45087d6bcea4222e7b72c291a054edf80e4ef6efd2a4979878c7bea3" +checksum = "9375e112e4b463ec1b1c6c011953545c65a30164fbab5b581df32b3abf0dcb88" dependencies = [ "console", - "instant", - "number_prefix", "portable-atomic", - "unicode-width 0.1.14", -] - -[[package]] -name = "instant" -version = "0.1.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" -dependencies = [ - "cfg-if", + "unicode-width 0.2.2", + "unit-prefix", + "web-time", ] [[package]] @@ -661,16 +683,17 @@ dependencies = [ [[package]] name = "itoa" -version = "1.0.9" +version = "1.0.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" +checksum = "7ee5b5339afb4c41626dde77b7a611bd4f2c202b897852b4bcf5d03eddc61010" [[package]] name = "js-sys" -version = "0.3.70" +version = "0.3.81" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1868808506b929d7b0cfa8f75951347aa71bb21144b7791bae35d9bccfcfe37a" +checksum = "ec48937a97411dcb524a265206ccd4c90bb711fca92b2792c407f268825b9305" dependencies = [ + "once_cell", "wasm-bindgen", ] @@ -688,11 +711,11 @@ checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091" [[package]] name = "lightningcss" -version = "1.0.0-alpha.59" +version = "1.0.0-alpha.68" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53e225b3fa0a8bd5562c8833b1a32afa88761c4e661d3177b8cdc4e13cbf078e" +checksum = "b407ca668368d1d5a86cea58ac82d9f9f9ca4bac1e9dce6f16f875f0f081a911" dependencies = [ - "ahash 0.8.11", + "ahash 0.8.12", "bitflags", "browserslist-rs", "const-str", @@ -700,16 +723,18 @@ dependencies = [ "cssparser-color", "dashmap", "data-encoding", - "getrandom", + "getrandom 0.3.4", + "indexmap", "itertools 0.10.5", "lazy_static", "lightningcss-derive", "parcel_selectors", "parcel_sourcemap", - "paste", + "pastey", "pathdiff", "rayon", "serde", + "serde-content", "smallvec", ] @@ -725,12 +750,6 @@ dependencies = [ "syn 1.0.109", ] -[[package]] -name = "linux-raw-sys" -version = "0.4.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" - [[package]] name = "linux-raw-sys" version = "0.11.0" @@ -739,19 +758,18 @@ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" [[package]] name = "lock_api" -version = "0.4.12" +version = "0.4.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" +checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" dependencies = [ - "autocfg", "scopeguard", ] [[package]] name = "log" -version = "0.4.22" +version = "0.4.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" +checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" [[package]] name = "matches" @@ -761,9 +779,9 @@ checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" [[package]] name = "memchr" -version = "2.6.2" +version = "2.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5486aed0026218e61b8a01d5fbd5a0a134649abb71a0e53b7bc088529dced86e" +checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" [[package]] name = "miette" @@ -792,7 +810,7 @@ checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.111", ] [[package]] @@ -810,6 +828,12 @@ dependencies = [ "adler2", ] +[[package]] +name = "mintex" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c505b3e17ed6b70a7ed2e67fbb2c560ee327353556120d6e72f5232b6880d536" + [[package]] name = "nom" version = "7.1.3" @@ -829,12 +853,6 @@ dependencies = [ "autocfg", ] -[[package]] -name = "number_prefix" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" - [[package]] name = "object" version = "0.37.3" @@ -846,9 +864,9 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.20.2" +version = "1.21.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" +checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" [[package]] name = "once_cell_polyfill" @@ -870,17 +888,17 @@ checksum = "9c6901729fa79e91a0913333229e9ca5dc725089d1c363b2f4b4760709dc4a52" [[package]] name = "parcel_selectors" -version = "0.27.0" +version = "0.28.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f4d26c18a8377a64728c04bf3b2e48ec43b0c77e687a18e03eb837d65e08a14" +checksum = "54fd03f1ad26cb6b3ec1b7414fa78a3bd639e7dbb421b1a60513c96ce886a196" dependencies = [ "bitflags", "cssparser", - "fxhash", "log", - "phf 0.10.1", + "phf", "phf_codegen", "precomputed-hash", + "rustc-hash 2.1.1", "smallvec", ] @@ -898,125 +916,98 @@ dependencies = [ "vlq", ] +[[package]] +name = "parking_lot" +version = "0.12.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" +dependencies = [ + "lock_api", + "parking_lot_core", +] + [[package]] name = "parking_lot_core" -version = "0.9.10" +version = "0.9.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" +checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" dependencies = [ "cfg-if", "libc", "redox_syscall", "smallvec", - "windows-targets 0.52.6", + "windows-link", ] [[package]] -name = "paste" -version = "1.0.15" +name = "pastey" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" +checksum = "35fb2e5f958ec131621fdd531e9fc186ed768cbe395337403ae56c17a74c68ec" [[package]] name = "pathdiff" -version = "0.2.1" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" +checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3" [[package]] name = "phf" -version = "0.10.1" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" -dependencies = [ - "phf_shared 0.10.0", -] - -[[package]] -name = "phf" -version = "0.11.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" +checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" dependencies = [ "phf_macros", - "phf_shared 0.11.2", + "phf_shared", ] [[package]] name = "phf_codegen" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd" -dependencies = [ - "phf_generator 0.10.0", - "phf_shared 0.10.0", -] - -[[package]] -name = "phf_generator" -version = "0.10.0" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" +checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" dependencies = [ - "phf_shared 0.10.0", - "rand", + "phf_generator", + "phf_shared", ] [[package]] name = "phf_generator" -version = "0.11.2" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" +checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" dependencies = [ - "phf_shared 0.11.2", + "phf_shared", "rand", ] [[package]] name = "phf_macros" -version = "0.11.2" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" +checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" dependencies = [ - "phf_generator 0.11.2", - "phf_shared 0.11.2", + "phf_generator", + "phf_shared", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.111", ] [[package]] name = "phf_shared" -version = "0.10.0" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" -dependencies = [ - "siphasher", -] - -[[package]] -name = "phf_shared" -version = "0.11.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" +checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" dependencies = [ "siphasher", ] [[package]] name = "portable-atomic" -version = "1.9.0" +version = "1.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2" - -[[package]] -name = "ppv-lite86" -version = "0.2.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" -dependencies = [ - "zerocopy", -] +checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" [[package]] name = "precomputed-hash" @@ -1026,9 +1017,9 @@ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" [[package]] name = "proc-macro2" -version = "1.0.86" +version = "1.0.103" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" +checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8" dependencies = [ "unicode-ident", ] @@ -1055,13 +1046,19 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.37" +version = "1.0.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" +checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f" dependencies = [ "proc-macro2", ] +[[package]] +name = "r-efi" +version = "5.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" + [[package]] name = "radium" version = "0.7.0" @@ -1074,18 +1071,6 @@ version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" dependencies = [ - "libc", - "rand_chacha", - "rand_core", -] - -[[package]] -name = "rand_chacha" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" -dependencies = [ - "ppv-lite86", "rand_core", ] @@ -1094,15 +1079,12 @@ name = "rand_core" version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" -dependencies = [ - "getrandom", -] [[package]] name = "rayon" -version = "1.10.0" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" +checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f" dependencies = [ "either", "rayon-core", @@ -1110,9 +1092,9 @@ dependencies = [ [[package]] name = "rayon-core" -version = "1.12.1" +version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" +checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91" dependencies = [ "crossbeam-deque", "crossbeam-utils", @@ -1120,18 +1102,18 @@ dependencies = [ [[package]] name = "redox_syscall" -version = "0.5.6" +version = "0.5.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "355ae415ccd3a04315d3f8246e86d67689ea74d88d915576e1589a351062a13b" +checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" dependencies = [ "bitflags", ] [[package]] name = "regex" -version = "1.11.0" +version = "1.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8" +checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4" dependencies = [ "aho-corasick", "memchr", @@ -1141,9 +1123,9 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.4.8" +version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" +checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" dependencies = [ "aho-corasick", "memchr", @@ -1152,9 +1134,9 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.8.5" +version = "0.8.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" +checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" [[package]] name = "rend" @@ -1201,36 +1183,35 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace" [[package]] -name = "rustix" -version = "0.38.38" +name = "rustc-hash" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa260229e6538e52293eeb577aabd09945a09d6d9cc0fc550ed7529056c2e32a" -dependencies = [ - "bitflags", - "errno", - "libc", - "linux-raw-sys 0.4.14", - "windows-sys 0.52.0", -] +checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" + +[[package]] +name = "rustc-hash" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" [[package]] name = "rustix" -version = "1.1.2" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e" +checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34" dependencies = [ "bitflags", "errno", "libc", - "linux-raw-sys 0.11.0", - "windows-sys 0.59.0", + "linux-raw-sys", + "windows-sys 0.61.2", ] [[package]] -name = "ryu" -version = "1.0.15" +name = "rustversion" +version = "1.0.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" +checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" [[package]] name = "scopeguard" @@ -1246,33 +1227,54 @@ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" [[package]] name = "serde" -version = "1.0.210" +version = "1.0.228" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a" +checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" +dependencies = [ + "serde_core", + "serde_derive", +] + +[[package]] +name = "serde-content" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3753ca04f350fa92d00b6146a3555e63c55388c9ef2e11e09bce2ff1c0b509c6" +dependencies = [ + "serde", +] + +[[package]] +name = "serde_core" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.210" +version = "1.0.228" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f" +checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.111", ] [[package]] name = "serde_json" -version = "1.0.105" +version = "1.0.147" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360" +checksum = "6af14725505314343e673e9ecb7cd7e8a36aa9791eb936235a3567cc31447ae4" dependencies = [ "itoa", - "ryu", + "memchr", "serde", + "serde_core", + "zmij", ] [[package]] @@ -1298,15 +1300,15 @@ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" [[package]] name = "siphasher" -version = "0.3.11" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" +checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" [[package]] name = "smallvec" -version = "1.13.2" +version = "1.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" +checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" [[package]] name = "strsim" @@ -1348,9 +1350,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.87" +version = "2.0.111" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25aa4ce346d03a6dcd68dd8b4010bcb74e54e62c90c573f394c46eae99aba32d" +checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87" dependencies = [ "proc-macro2", "quote", @@ -1365,15 +1367,15 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] name = "tempfile" -version = "3.13.0" +version = "3.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b" +checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c" dependencies = [ - "cfg-if", "fastrand", + "getrandom 0.3.4", "once_cell", - "rustix 0.38.38", - "windows-sys 0.59.0", + "rustix", + "windows-sys 0.61.2", ] [[package]] @@ -1382,7 +1384,7 @@ version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0" dependencies = [ - "rustix 1.1.2", + "rustix", "windows-sys 0.60.2", ] @@ -1398,29 +1400,55 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.64" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" +dependencies = [ + "thiserror-impl 1.0.69", +] + +[[package]] +name = "thiserror" +version = "2.0.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84" +checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" dependencies = [ - "thiserror-impl", + "thiserror-impl 2.0.17", ] [[package]] name = "thiserror-impl" -version = "1.0.64" +version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3" +checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.111", ] +[[package]] +name = "thiserror-impl" +version = "2.0.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.111", +] + +[[package]] +name = "thousands" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3bf63baf9f5039dadc247375c29eb13706706cfde997d0330d05aa63a77d8820" + [[package]] name = "tinyvec" -version = "1.8.0" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" +checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa" dependencies = [ "tinyvec_macros", ] @@ -1433,9 +1461,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "unicode-ident" -version = "1.0.11" +version = "1.0.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" +checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" [[package]] name = "unicode-linebreak" @@ -1461,6 +1489,12 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254" +[[package]] +name = "unit-prefix" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81e544489bf3d8ef66c953931f56617f423cd4b5494be343d9b9d3dda037b9a3" + [[package]] name = "utf8parse" version = "0.2.2" @@ -1469,9 +1503,13 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" -version = "1.10.0" +version = "1.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314" +checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a" +dependencies = [ + "js-sys", + "wasm-bindgen", +] [[package]] name = "version_check" @@ -1487,41 +1525,51 @@ checksum = "65dd7eed29412da847b0f78bcec0ac98588165988a8cfe41d4ea1d429f8ccfff" [[package]] name = "wasi" -version = "0.11.0+wasi-snapshot-preview1" +version = "0.11.1+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" + +[[package]] +name = "wasip2" +version = "1.0.1+wasi-0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" +checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" +dependencies = [ + "wit-bindgen", +] [[package]] name = "wasm-bindgen" -version = "0.2.93" +version = "0.2.104" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5" +checksum = "c1da10c01ae9f1ae40cbfac0bac3b1e724b320abfcf52229f80b547c0d250e2d" dependencies = [ "cfg-if", "once_cell", + "rustversion", "wasm-bindgen-macro", + "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-backend" -version = "0.2.93" +version = "0.2.104" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b" +checksum = "671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19" dependencies = [ "bumpalo", "log", - "once_cell", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.111", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-macro" -version = "0.2.93" +version = "0.2.104" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf" +checksum = "7ca60477e4c59f5f2986c50191cd972e3a50d8a95603bc9434501cf156a9a119" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -1529,30 +1577,69 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.93" +version = "0.2.104" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836" +checksum = "9f07d2f20d4da7b26400c9f4a0511e6e0345b040694e8a75bd41d578fa4421d7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.111", "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.93" +version = "0.2.104" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484" +checksum = "bad67dc8b2a1a6e5448428adec4c3e84c43e561d8c9ee8a9e5aabeb193ec41d1" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "web-time" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" +dependencies = [ + "js-sys", + "wasm-bindgen", +] [[package]] name = "windows-core" -version = "0.52.0" +version = "0.62.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" +checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" dependencies = [ - "windows-targets 0.52.6", + "windows-implement", + "windows-interface", + "windows-link", + "windows-result", + "windows-strings", +] + +[[package]] +name = "windows-implement" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.111", +] + +[[package]] +name = "windows-interface" +version = "0.59.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.111", ] [[package]] @@ -1562,12 +1649,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" [[package]] -name = "windows-sys" -version = "0.52.0" +name = "windows-result" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" +checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" dependencies = [ - "windows-targets 0.52.6", + "windows-link", +] + +[[package]] +name = "windows-strings" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" +dependencies = [ + "windows-link", ] [[package]] @@ -1588,6 +1684,15 @@ dependencies = [ "windows-targets 0.53.5", ] +[[package]] +name = "windows-sys" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" +dependencies = [ + "windows-link", +] + [[package]] name = "windows-targets" version = "0.52.6" @@ -1717,6 +1822,12 @@ version = "0.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" +[[package]] +name = "wit-bindgen" +version = "0.46.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" + [[package]] name = "wyz" version = "0.5.1" @@ -1728,21 +1839,26 @@ dependencies = [ [[package]] name = "zerocopy" -version = "0.7.35" +version = "0.8.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" +checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3" dependencies = [ - "byteorder", "zerocopy-derive", ] [[package]] name = "zerocopy-derive" -version = "0.7.35" +version = "0.8.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" +checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.111", ] + +[[package]] +name = "zmij" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0095ecd462946aa3927d9297b63ef82fb9a5316d7a37d134eeb36e58228615a" diff --git a/Cargo.toml b/Cargo.toml index 06a3045..c4c1fb3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,19 +27,27 @@ crate-type = ["lib"] lto = true codegen-units = 1 +[profile.profiling] +inherits = "release" +debug = 2 + [dependencies] -console = "0.15.8" -glob = "0.3.1" +console = "0.16.2" +dhat = { version = "0.3.3", optional = true } +glob = "0.3.3" grimoire_css_color_toolkit = "1.0.0" -indicatif = "0.17.8" +indicatif = "0.18.3" lazy_static = "1.5.0" -lightningcss = { version = "1.0.0-alpha.59", features = ["browserslist"] } -miette = { version = "7.2.0", features = ["fancy"] } -once_cell = "1.20" -regex = "1.11.0" +lightningcss = { version = "1.0.0-alpha.68", features = ["browserslist"] } +miette = { version = "7.6.0", features = ["fancy"] } +once_cell = "1.21" +regex = "1.12.2" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -thiserror = "1.0.61" +thiserror = "2.0.17" + +[features] +heap-profile = ["dhat"] [dev-dependencies] -tempfile = "3.13.0" +tempfile = "3.24.0" diff --git a/README.md b/README.md index b554fc3..713d8af 100644 --- a/README.md +++ b/README.md @@ -1437,6 +1437,21 @@ There are only 3 commands you need to know: - **`build`**: Kicks off the build process, parsing all your input files and generating the compiled CSS. If you haven’t already run `init`, the `build` command will handle that for you automatically. - **`shorten`**: Automatically converts all full-length component names in your spells (as defined in your config) to their corresponding shorthand forms. This helps keep your code concise and consistent. Run this command to refactor your files, making your spell syntax as brief as possible without losing clarity or functionality. +**Optional parallel project builds** + +If your config defines multiple independent projects (multiple output files), Grimoire CSS can build them in parallel. + +- Enable by setting the `GRIMOIRE_CSS_JOBS` environment variable to a positive integer (e.g. `4`). +- Default is `1` (fully sequential; same behavior as before). +- Values are capped to the machine’s available parallelism. +- Higher values can reduce wall-clock build time, but may increase peak memory usage due to multiple optimizations running simultaneously. + +Example: + +```bash +GRIMOIRE_CSS_JOBS=4 grimoire_css build +``` + Grimoire CSS’s CLI is built for developers who want power without bloat. It’s direct, no-nonsense, and integrates smoothly into any project or bundler. Here’s a refined version of the remaining parts, keeping the technical depth and making them more engaging and polished: diff --git a/benchmark/.python-version b/benchmark/.python-version new file mode 100644 index 0000000..95ed564 --- /dev/null +++ b/benchmark/.python-version @@ -0,0 +1 @@ +3.14.2 diff --git a/benchmark/__pycache__/main.cpython-314.pyc b/benchmark/__pycache__/main.cpython-314.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8ade4f7a408e906726beb16892d6ca3e046a13ab GIT binary patch literal 11776 zcmb_CTWlLwb~ECT9FoI_BvLPm(#SGp(H1GcIb_)bX_zFQ?LzS|@lzS|``+?yuoafjsSMK~-I&T*II!gXqb8Fx$WagXG| z&(;a=xKHwpH%ra<**4KK-YT{B5}duAko+7C*8t~$Ya8c;YdhzHYX`@`wUcwhwTtt> zHTZ5f=RNc@f=I&*yNP#$eZ+osLV%0x$G?a#`8O0nI8R=>#EuEcdHz;jxXDiP!c1P6 zPv%lQdxFoU=H`>aP3O_Aiqmf5%Jga0C+~o%;z%#k0*doO+mj~8K}UFVov8}G~Qt+3#G6i z&E<3Kd@_@Z6&BcQQN*S~QsCc3b)lGx=5yHv{GiYi#WIkN-VpP-I}(3ex`T$?001-| zoq?l11V-;TTJ1MP5U)L9FZh~f#(%HaWbFH!Ya%Qa)-7R8(W~4SCd~tVWr%qzewfhVN+&c z%dL5D)Hi2`+Hq%>23?soWD2!eXP7YxTDF|D^v>NTS>36PCNQ_qvu#ufsU^?p)$ zTL4oMCm1jydo2ZW+NQxy(pt^9_YoY$Sx2;uQ*hx3kreL>}wSbcGlYmSpJqn5oEu60W){D6HM#vXVL>}^1E`)knL z0dSpM7Z==;-fn;ly#~e}u9ss+R3`$@-mP%LeAQ&$Pel4lp~<8m@+>Stu)S$Eo5_LF z6J|jZf=P>&+~KR?`EWWB9uJ=nUn+UkML4Y76D4a5nTk^XYZ!A_)GjcdDItS3eaWFK zdD$t#?%@*>?DSIa7P=m`k}a7+%0s5+_-vu%G_-qZ==C%^))kSGHyYib$7Kqs!&2n6 z)p^7s+f#G-Oo|s}yQ=90#PO2bKn=>Wv~6o0FO!i-li-8S3I>bIxVq8s9u#CInNBCP%_loC5PBA2B!_PAWskbj63XJ0Z5U7x zktzkNC^zd?YgqOCgl@!hbQy%7comfMBJrKCqvq>d@%7bw;T2!F;@eU4?OyTie%M>_ z9bcTNw+}2WEZuwP_d3rgBGQb>G?Yo+VHqcqFvKaj0lmVO^`@GG!zr0!vu-A+fWS1VG9QigbCW;01A%=^e748I4-ko zD1PlFOg-UEV=;PiuIUb~b+SvV8Fz4sEF7abMVxy}XpaF6bMSJ$>5zua)VD`_XWR{% zCRyXHR^z&dOwQPQwZ|ZsBlf3KTdFgI62(JwV61xU1>L8 z4Jx?y=>e@}Qm<)m%-rWXOpr)VH5A}sr{<6j)BOZXOyfKX0<#fmaA1+dLd0qE+>s11 zY6%e;G7>6{s_r?P$tiXQ1scigpgUPU#4_(68H zDtnZc!rX$0n#N?Ck~9Ewl9!U%#O!t1QxJ<%CY#VuyAoP8k&x}h+)c19IoTr4C1qMLoAX6~Itn4^_JH=xUP^PsU4X_uBK|o>`B8XmxiW8zL`+PDr2Yx9SI?M{$0ZdJ# z^2MAaTLrkKWzYLCa|kOFD*LRMeX@NPk}8rU2nP^K3b8;y`xGQ-2f-!~(;TRR87HF6 zz_J31fLl{aRF_aFOW@UW4q8sZPrQRI=(>&Ywl1Ej`}~U&>rIT+z1GrQYl*D3L}X@g ztu<6@4X?C@>&<}|cB<9+Jx#cLABBItW8FbGd@r0tp!fF|e|J%426Rxp0v!U*b(-*a zpE{_3_nu?Dg>bm*Ov@+Zs87Wot}}s8Zr9p(thVo{v`02Rt=lQDbKOZeJh(^AKd|Z_ zsQ3qK{$pkTv40+~4INn>I#L-rR%e2r#%rPIYAE_JT@8)aneI<#YCW;lp4h`;wdW`x z@?k{Hb*Al8D{9-f+Ox0HbD-8Uy3#ZH=+@(&Gha1VI>5p=wK{P+kXtLs(^;Gz-4V6AJbZe^Z7I%D-B*MrqFJiDP|!HqO_x|knZ(q z*$;?1l#C)|K@_l;VWz;fbYc%VfjndZc?Pnz00~kFHVK8CPuVUi1LFNLpze>BIZR_h zL7YIoyTC!`0{q0c;Ic?OvAgd6^6oDef4SDOb9w*gZ+`Y>rDgOZ`*$rnD=kC!?0>d< z)@XOxbErzc@zh2zz84l)v1QNRD!uO;msjWmBq{jm1qla!)blZ@K(a#@wwbvviv_H> z0r@hsdnc8YDCV}oLoMGEE2#h*(u#VLFcyoICQj&vL+gdIPM|^gbd2R7&8TIa^oSSb z(fHeZst7q`eM~V1mPWV;lM~QXKO-;;6m`_4A~fZLw6TQC0Q>>`M5O4!ucsVk=dLO> zv_^%hRPP#kyj-Q?oAMMbP|VYR#eGejG9`at>mY&}ini?aEd&BHFL~%?Z|DM#oGt-v z*=zl0K{G>tht`L)Xb>Pl-D}ZCh0Q|2c>??**3$0NIY{a&8wM|C78E*8$t@^(K_x?M zNKLk4uoA5@acAkI5*ix)AoD+;5k(|+h!pwxg0v80PolKoD_6pWh)qB?M7H4sgD6{) zxdoY;&E~HgVg>W>P&OQlC8Cw7?x;2%PXa6r#Hh$3DH9No&;23%#1n8qVVnQ{m5<#J zpt<}tS8&A@thqv~uFxMYEq8w2^I6X$XC-p77CyBaK83f}r7AtOM)!S9_dm4~1E)!4 zU#Wf{U^FSpaiC_A7$ypk?Bg77KvQ}G%Vg92^YTtBSmKt=5{a733RIlZr44BkkhX!@ zB<=IwDShS?6F=nLD9!yt;y?J?E}=04B`6^JD*S~P67 z&u|EU#M)4_omHSX3ZhRkPMjnQ))-N+ZEj<<9q%K?!12EYx=y%lvMYdtv&L!87PoJ9 zG@4q=o`kj18=C83}B7no^17cz;mj}4`dxHA1-6X(>jMleek`qMHFurhkJ zE*ul57-FyPJ>bI)R%ZtuUr@QHy)Zxs z&aFwT;5Ko|{o`DUGm|LhZ76Y%`|Z^n{mG3_?k86d-g$KY?=V~l3J z+LCUqiF19CGt0gp9AY4O`sgd3JG{BH94JNKr*-idE#)IC6l+H zmkqu`fTs(k7AL2kwW9&yqm4XUqGHl*sT7z(hv3SXm>Q*#b8h`T%2wa2G_(VWD3aA| z9NOQwUgCc8p`4L`;+$INZ-R3vyOh%d9QJ`b3`sCiupxFi;j@zrB%k2R6gX)s6nMz5 zSm1jP!H!y~8~IF5c59vSsX9J^0G`TJ9-#4zAX!wLFJMD0yVV#`If++7Ob6n50wvjG z7mAJ&VsU0Bb6d9F5`dJ5S4bjO{2X0S*e<(Nxg)<=C%piN^)iFvVBMTE2&H<8F5;CS z+(7+(h80%iDmNofW5cOC03lQ+3^F+*`|z_mUp%5sU5!Y$45;=V8-2~}cj_nm5F;n> zOw}&JUFh>q@Dta;w_GG%*ofBl`wJfrFP^Pa-WnBHp#l#i@CB;WcBM^%9M1~mcv=P* z&!X%}+x@>A}XF4B1 zQYUc#R-I{o&{^w@u5?B#ox_mV8FD@+sBRZH6DUy>sL{a{I#})=`kIbDbrZdZUbGOj zs|<%4_RtbpwfC)cAAESH(tWB-ch+gY1|F@_G06IK>{xF5Jos7g;dCW(;&Jh53q#Tw)L z?ZmGp?q`>ikD1-yTL{ng?;uU!>t8y%bhPZ*Q>FI;ZpH^u5B!%Q@aZoPj8wKAdbFpy z?Z_Iled$`2*@K6_`@!807C)#52Wr8+E5W@F4_1PQVZv)}aGka-ovgVBtM0+&<8{XU z+cO`XDf_oqnJ^kKf(Hzj2M(6QBT9nerRjXzw(Z^+_+0k~esdnXUISk``wX3F-(~5c1^G}8|(vNzgjowi7o)Bt-VbsHLZA8dfZ4!iU zfeYr)jX(OE*4-x!AACom8)qXa04CpfYXL`%8q!?|a2u`WC-{29_7a4BBg9^lSvO&( zp`XJH*@)TfXqfsrp`U9*KgRq76uI~6ZX?XaaQ2AFO%AH!`T-1t+)bJUW|iR6;DgCD zqmL-3QHX}il|GOw@E8?Hgm_E+=iyU77F02OcUS;Lt$dTV!Is7@l!8i}shoUFn2tqI zI7wZ+beI(e0Hc5il1UaPhk1+%{jNVz;Gbc*hj%Txm*@ll6 zUyeZ|E_@IzyBafxvR%z_;e-}Wdk84uu0(q?sD>;%R-tetfy{zpAdsoh4!@Ob8HLWh zh2OyY|3Pgp-~x#gSK!x27Eh@=xxHp@FWcMKynRdCE8ZPtdWWJi?%chzcxTNUsd#sl z>0O|Mt-&fpMM#_7#ckiv9;BHEDlIz}&*J3TV3mqM<=(0L!3R^1o3||;eB8XV?Ax`x zXZhMA|KsSfM+=Xm6Xl_|%g(b^>Kp<+4H}Ps+_HTs{Ub&OcxU_hYx-+ zRdKytrryROn@lGXh#iSUBqZAtiF7`dNC?P-S6q)bQSBtUOrQ%22?XRSf;hmuW;53n zufdN_s$y!oEP+3d%L_P9DYxM!)%!96WPw7ckOqDFX zRhHny4JD+N&lm7oKq+R^`oOE=E_#QAji!pu;b4AK=v^PWu(;s}1(Hb?&)u&PmP;52+xzybwinD7k z11u0OU>L;Oiyb4IWPbPu4Hz)X zJ=4uY+_mx}O|Ylx)vKykU%gk=^o#{5#4hk6uoE{s0n-1VwPf z9fHzb(Q!KX)nC!SYTyjJ3Ca*8I3wktj6ou;<4lwZ@@C3OnQ`7ixhM-xSt%=&*r*1| zhV%B@4$6M~20>(OT%6$!&N3-F zn@BH^v$&&P`!JoQnK(zYF-ue8gh`R1wc@FQ>B3W`>v5p!(nA@dI^Z-8 zpeZxS{5B20bz6RA>TKI`NE2!=_Q(@Dy@1ton;Dfb?EM4{t!O4Ov#9G8b+bhSIdb7E z1389X!xvHn;UVBfoMSBTj_5@PW{zQ95p8*fo=LHw`z!*iql2-*kLZ-=2(vN)AO+!{ z{Vu%FB>9%FRV?AEuMI$-<=y*v>;9@OusmO}?E+#cA^7%|`^z`WBP;jHy}Y-7)z7<+ z@YW-0rg_2FxuRQ%thB72FMpT!9$kfr9^|cqPoafv3mG&a8gr}7?YFRSHFNWzIh?8) zCYYE0u&fixe5*?-&0K4E4cOF-#fUsJ89I|=7RXc>PaA<%N2 zv|?q4O#m<6P@@$u)lq$?Tr&Z(v=Y}f0Obu)1FTm+gmn$n3XH`->A@^8RCjbygGS9! z30~u_d(`x8+Q6o@WgFOtB9`Lt#dvzAkVbgJBA&{@GR@7?be81ibJ7~flJRUpUhT;^ zOLmSwKuoX#^}*cHeQBCyJA3is_isyo4l7~*Y|;9FoJ%F=Xr^d+K&Er^H1m}i62Mu6 zUsO%9Afsr;w$m^F4u~G9UM$7Nq)uSEkz6d&&5n)^QkrG=j3Ran7c(Rjcf&t>4_;`V zUCZ8g-dvt7>wb9mV|U>9mSEM>^uBw^RE_kmdVd;T-d{2-x0GJR7I$^6f9;K59D8_Z z?cl?C{`ghidiANy-PyBp@5c)=_Ym)H=dGh_-nApY2tM?$xgJLOqoY8PGz5vLJSYwG zZ~S}!%%-j((uN*=k%qu1)W&vQrJulSnrYE zf{m(Wj+*L5KL%sXoA8LY;xupIG+&P%Lc6iPI9S(A{N+K;(V$ZB$pQwh{nQ|*<1C#Z z;d25j6Wbfne}d+L*$XdNCk&bRgNQ}6B;|$L!pR9YR!xjdaVAMKGOIPI z(5;-DV$mi5D%nAjvQ`G`T8Twg7#XCQ$Kjs^2(WfGEbn>et&*kO|Dm($_AfcUG!xd~ zlVEe{*m|&M$yp7w2!XDZZwvn8OIB6pUF)+Qd6ult&BVU$mDhiK@_X#^@zU!R_wLp6 zi?3GOyEf6DI{dt&jW@P!-V0hlQmnw=cOsGN%7b6`(%?cMmz@n(9j2eou7b&BGvZ$$)Rh`S5qsAAOTc*&yj-TsE1&MhWHS=!N z3`;*!bKrnw{=V8E$Lv#R!^IC}QzXyZqoxV8#cg;fJDeMwa6)LH+?0p%Qog92^26dE z7|>IVQ7hFHwNb$-w^A)?R$8P&DypSM4Nsx%6F(qjZU3g4Rdh?8-sezi?nWC@iy9%S zRg-H|=kg9f@9T3rRapLf1C|aAmjC!tSndKWcLSCrV7aG;+QMs#8IP zQe)|;W2V8C#~NpD%^wKEQH6VA%m!cJ7F!tA?5y z%Z3_NjisxOnFh;-I{k%M9#Er4Mbx>xdlQx~;`Y?BjJl(q4QRS$H1X*?>WR8v3ePUU zvm5a20Xz?GgJ<2&-8JOYcJ8TB)p)w=xM}e8)al;<&t46l-W~ANa{E+xdZWG#czQK> z`l8;K!m|(XddP_(^sc&!1ItAGwQH9m-hpLFDehH zF!M(P8!+>0FbhQeFNN6=!0aesb__5(z71xLwe``kLGBakan+CuP1S2`9O>3I)L8rL zm};;N)ae_r*6!(pYMJtlfc1;Yn^aggMw_UU)Tv|gSBbo{H)-$&o|nS=G~j&(@IDK8 zpR3`m+1sOy)OpzNFTfrZ0*REg8l%QK78;D2>hu?4bWwv*a1%z_@{kInU^KJ^Mj;JG z!1GcVT>^|Q14cuD(Qpl;SJiuVG>CDzf-wr!(rS!?bu2U(h3a%QM$~Ij6E#AO!k6Qi z8Xam>lN;YuKCUUhN=NEVTpwq?UicKpogrL%XACdZ4cD!2O1{eJZ*G z|Md<0HwKJU>!v!|FU6Z1>U?WJ-)HPI^y%~AXtB|0w?;W3#oJhyJlmu z16VYqva_OzOL1ws7^yXNadMKp&yuy)Q2ro!0aYijfoE5=$*0mZi5fkC&%0!bl^r+{(SlpJl90Q=(uywRgGr;q_BHwe z$Dk7x^61RQS#bJ@4GLXXN+}hemnjNEjbZ^G;0*YR zM6=|?6D@f90-X5 za_!5A;ULBqhHiPkf0t(P%IXf zQ#8!v3!<$6!3R9g#lt&@dU4_n5~D~SKoJY9i;-gE*5q@Dj3Xy(p3ZW}rHgt3XJ3N; zddN0N0)vn-R8w@Y3!rcrN!FuZU)D)nO_nyOl2%i2VY9qaf8Ri28Db={R97_T3LG+i z7l%wS#-@sN?Cx~2YX|AC;#%Y+uooTb%qxgQ=4MH5jwX|Gq%DDsc@|mqW{Y-8D9Unp zRB}jx4c|;U&ayNc%Yzz7>(Wp}$8;bg@7qDl3CS*zkxb@kI#Kj&qMRQuWTs)-LF59L zN~gF5Qtl8|WNg)7XwWq&bxj_S{JrWmDJ1K`COH}8Pb%7#2K!jiD_KU2o}Eq2KwNTW zVaFvxUL7viYj`)4hQID8AZh_4mF;tju>_^DY!=faxxqW1!(JZT?KF5m2Y#g=^9VuEEI!%L@R5YP*A}coF zpIClwflYza5;|9sJ*4Q83e&kHF0+CMAE#iO#9E!4mO?QO(U=2U7meSBP_Af9=i&*` z1i_muhaH}xX%w3~4iiPPw83LeeogF3j{I z_CEBYP?<9stM96!lT+oG2;%BOuic2%l>`k(yN0y(xj0Q08d5Ec(2y$UNaFQJ+6x_= zDg$jw;L7_Xr_Cl~lGS0ehb2Ih4J2cmEl&(^TT%V6lVGt`iY@xNEr<=$XO4mwi}q^d zkKX!`Vkbdm9f@fxGYe389RArkaJ4QHUziDd!_v1)?T>A{AR1ZT^Q5WygVcMevhD|I z@K_rN`)=?wTYaULie=x5eXYB4;PMlzYuQq=FTcgNNBM^973+z0y{D?yz;e234f5g9s@1y;`C#dCxxI9jr((%2(s=KURY z!DspKL9O6zBV+2$EY%C@;##aqjBD-VQ@aLe79T!` z>S*&Y8h-E5HCTWKu}Uc!jZT61r-Wt@`I69lnKuTj&3m;3Jf2JZ&`thsz7oDCjpxMZ zukTe(Oz_U#{N5vvoJT6rTl`dfJvyx&j(R1U#=}9zEe(h7ILe2QX_g|swQtqHw;Wy_ zQO2Xm1rs?Tk4MU=#zPV|?{ddetFP(|mOwd$@S)Wa0l;y#mEK%AE$lwQ4~_`C zN2|_2)e}%SE(zfiYaK%PJRiF7aL>aLe&V)p3Fc=;xRl`OtZ*sEU(EAO_o|-8$-`IZTO0uV{^a|L1QK0p7KF!i11 z1o5_RT>oDLaa(s)54kDb1p1lK-#|ajH}zFdsB~+kO=vr|W)<4bKkO3P#`xCpU(fK( z)N`9D*znw9YqUSNxSGt1k?|$p2KoVX(1^ERckj0D5!@o^QeQW zhIXPJc2x&%RX1AZkR;G&Eht*+5>e5mv<(l0WL1=!+=i)I7!(4ICdJ*oMTprr1^54? zXTqbT>c4x4>-+BLDYN3hh2XFS{nf+FQ}t0>qXs82pjV^-UK?DmMB|o&)C57D zoBkkd9Z}O(*uu>SGqhL>G1kXG)q;&4V(3Q@%C`fp2ToY}G=) zd3}Ahk`gD}M}XG0nz1eW`2Rg)5YE>1)N}{1GLQTzLD-00L@gY@QP*8jGt5VW<^loC zyGk!=VK#IrVMo`bZnR5sO}^NLIhv3in4aQk`2t++o~PnN#EwNaejo0h&e0ik;VLfs zGRfB_ua1-GpwwIR$!^Lk=<>tw+>b0{IHBp>ra>MqCWb9Z>R(-~?Puo#D`3y`oFviFNg&b6+tyS(riIy4gY+ zZUxs5`Ng2>%CA%f3(6L|#?du1<>Ios2=4a4)jlMO+)l*Kpz9=}8IOo%W*~#lDWYvY z#m&W#gGe-@H}glRD2|woi2|IGjmdOwI$~vJ5lKE}=HY@d^8gVX@=*;_TmUNy9$u|ybLsCv-%)7wrg>{7eKD-u*-&?%T8pEZo z^~U{6_NqJl*iC-qCLg=^{?@(siPOu&r&h6?UhU(37b?z+ANxbk;FGp_J$!1Z;dhR3 zwRzv;=H8E*dsm7-d;2GEKMV_fudO$aER8(zHZI>SAA0QVtav+D`k#0LAK2crm3mjt z3!bBJO!FOhh8l-&=an(uH&}6={Ma9aJ8^Kn3&N-M4{}QmIF~(k@A=5R=dru}x9)Z< z%)ynrE4SA`nAa-K5fJ8SD7@sVhW9-VM?MNiR{9==2bZoqb%#n<{$l(`;}v(;$DYu$ zw!^D8*W1o6jsMQw_U?D9yE-55>i=jL9F+d5_b+=No)88`*LRIAJDvax-DUQ1V|S$y zzM!83LLXdt?@B4VrV|2#AaYaBGfyKQf)Dyt7vFTI;yGLOw3WSrXYYHiPlH7B$>+_4 zGhFJgI9jo+-78}&XZgX`c^_4APQvieh<#@&&a)u+muCS2K!^8se)VM+v<=;U#iEO$ ze`^d6oiY7gTX@)K`TH}DVYlrce2(G04$&HmWx(Yhi$!#wApMKzh9dfFpS*#S;}IuV zRxFX5iNWPVAc21x^eUa2#=0u`IRZeJ{2U}op$lMGZ?R6G_K{}>>cdH!z?ZKiU9z46 ze`z62pJA4v0JMf+(TV)IL8sGwYBcMNpEnRX=RXsn&&(Fxo-YD6-O0~FCSBhb9=mQ# t_eHZ`x9hW>a|T`W7enT5UHCcdVn*juv0@1StFiTwao49N!q|-a`(NPe$zA{e literal 0 HcmV?d00001 diff --git a/benchmark/core/__pycache__/metrics_collector.cpython-314.pyc b/benchmark/core/__pycache__/metrics_collector.cpython-314.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d8f4eb96db122a084c32009fb207c0ed39c9cae3 GIT binary patch literal 34543 zcmb`wdsJIjnlE_tLP7`-AV7cw;*EF+^Rf-t#x@2&v5Aaj$8k(ykZr|0R7WCCsH#a; z-JTh;ZcP=H?!KX_Yi>w&%?;_!+@fc7-}ddv?QvdRS@+(mIfsX(QqkS6>de&4TJr~q zeJ7b@R?qyteI7azik)=zG2Ytm*V+5qzwg`M-lrum*UI79d+luK8~>8y{(&6IW0EZo z{u-7SIX@TWu5y0eNnKROe)Um3`!z%j?AI7IvR_lwgkSy1tP|#_xk^f7iCS1#b~Ky) zTBFutuA1{3N;$u=TQ8Lq&0&5f_+_bnHs)uBpGEb{Wq#T4vp${MZIDyvG2a~c+BClT zeqAl+&7JsHI*zlB1fzUtGU6GWo1P9%M(23Xb^ISZf8I09Ps{{w&+)fBqd^{?GZV9u zLC?|P?Bvav3I3M#;6LrLj`DNQhNglM&&|+{n{8n}I2nqB=4M+xll)vH(iWbch*D{u znczfZo)69hXQQ6E>z=Tt5;Jn8L$j09^HZVO8-3O`&(ZnN^pqzWnhC-&5}cXipZCm1 zCT;{hP2u3gEziX4lxO1EAP*leVhoO6kb+@Hl_rCch=&hG=H_`=;diqAoM#S&PDD{T z@;Emi4bMkCkKmvr}`oBdwm9iOF;4TUoR-q1pN8eAcsGUBWmz5xqGn4>W2Gej`k?AEPH~@n^xz_G8pUt$qv4 z96v@&)aJLs%=Kf8MDzT%Xnuf;+Wom0A9;y9xm!l&W!e}&7k`FXQZLwOPJ-+oX9#h!QT$eCd~7*w`S*V&kmpUmL)98 zq)uc-p2sYhNmxUXaYUmDkg&jxIWQMVBhkcWtnP9FubrVNq*dEKd-G%+E$u?+S`M z@$5usdg9u2FfA~5GCV&%9|`i~M8p#LiVz5*?=^sIW*PCvtOcetK#=5}gYtibB%s9!C+Z0YN@O zBqkilegQR&v`@`M`N++QX!}&~+4h;|+i&opnYj=jY@3Wk+OH{#Mf>C& zA8eP&HnNo08ejPNgk^l3N*f3KE(hxr>$@9HJd*#ocK`<0$WsZX{czvUkLJDt+yDQ0E9Rp+wjMz%%;Vo z)aHH#OXIv>Tfb<$XYo9sIX0=%GB}9JFuE9p33#Eyyrf9%Vbn#XqKrzYX<3*`+gO-N z+gO-N+gO-N+gO-N+gO-N+gR8a&^8vP(l(Y(rEScm(l+M$0@~)+qkSrEtKhEGC~Y0B zQ*6oKYA&GbmfIiJ2lRWWcT{>8(2uGVFPSDu`$n6SzKSiNYk(Eywy8dPzX9M&?#Zwr zU}%(srrJ5q#a)3ZJpqGK7d1vD#RwRZ>s8noFsh-T=q~Q!;n6)x4#{7s9#{GlpV0$~ zE%{r`jd7!gl5WK|rt8xA&3?;1xz1zUtVa#wMh`3YcS>eT5Pq-hRUBQ0EN%*8)5TSBZtl!CLR`PW&4qL+`De-@IW{ts-la#b zAQLVwY`W5`l;t;#>1+VbVechG&G$s%jA~Fz~vIz>Qca0k=u;=Ohlu6!ZJBA%~mVEn*41?Si6n| zXG6iMMDE$S^YfE8<(v|EN01_PZ9W=geULDP`Os`MksZBB>lXSVku}DwiQ;j&hm|F1 zJjw@yiGpOmk4uRXrU<526mR6QaV+sO0NBgjAhaz97eLp>!3U@aw-W=TVT=`lwIy-wkZ70%S*hbg)J^S z#)9nAx(`cSugtzYyK;V`#JhMr-qgPG{Nk}qTV1@-7i-)vHtyeO>{~n*vsH<< zxkq&FSu4V_`Y?~HX^B;LtXFr$i%MffZDLVdys&tw1g?i>V~v&SRk>s3vU6jWO3_jo zv($-}x=l+%JijQGUoYm@3zqs%AC_^&6){Jn=xBViB<4LRdJn$!UkOELA9DKK;$Pbx zJ0|>o{xFLxD2>_cM0?#&uE!dB#fDxXzwaTZL!-BC1%jh>_5A9P&@ps(;_i8&@MO$( zO0=E&e8)f$K8q0fe7m=QXdm}ZPxp|Sd$&0c=KJR6p>D(b9Xj~G-=!maw}I^Y>WB9k z{>D`>+-dlmP7~}Yyb7(HpsltCf6Ycf>Y987A<`27d#^C#D$QSJD*`vFuEk1hjvF;6 z?TSqydusY;ACX>NnU&NWLb-@h@i1&ROM0>AFL+H zP?b+fhO)H)Z%tZZPKP;8rS4e^_2Lou&Upy_`o{SE$nS=n=V2gU zGlAr}`RG}1E+fhb^Ua9}kw+GjaWG(xo((39&&+}OF;0Wmm*^@nI{f_XEK!<*@%ix7 z1OU5AYZFC^mxhw@ttgqNWsdKF;nho|&q!1+LYS{Xre*n5TP-Q8+(pV#!qFF8ry3*<-dE(N+_)HHx;z zHG^Pl+_ZILj+VKX$71dt(cN>;xp&F9qc;_l#Y-z*dExsn#7djiOPk_OSIp@XoxauR zrn8&57(sC${zoRx>3v}0%JzMf&2^3G#GJNI9~N?DRWWC)=xlxSddzo3^c@jOk7C{z zlqDQaOz(oS&my$yz1_b5XqWz-uKGcj>D>w)%oH50&e`u^mc0ms=hp!-a-&F@{wQ;8 zNPpuqd0eY=IvH1)10=c&L$nu$STAhy>%&?2HRC@-dEx9UR4#i^mWr_zzmysGuQB7S zm~qz84D(niO{v=rEYLuf8S@-fXL+)mfK{2>Rov-)keFm&)wQaK93^KXFO6GCnM`*Z zeZapJ&b@d#C7m%~yAE3BBK(v!Qg-o5N~r1LH&fi^fF-S53(CzvVUp!Cs*#DVXj`-* zQ4Hioz$Wcc`fTc7P(ATh^6-}Ozrve2`c>Y{lvjQ;kL}GWE^H4M1PZP*%7p&Qui{4X z19^dhls?Nljq*<)lUtatwg!V9BOvc8xBm|~ZVK-l@4y89N9C->^1_CZB7atjpAml9 zyZr(f!7Lw)4K}VYzS5sj0()sslIOwdQmX{wJ=7`o7%gR(wcC9MC7@qFx!OuloKO1sgJ)hNRYS z0P4VhAP#kmj;doOnZG7feUHgdhBz=^2yuXa&QSI!@nLDtn1-ggIn)OjO+hOE4E4df zLiHg^lGi&NA$sIJc=Gtvo%g0*D!ah##FVKjz8HU2nki7f0mL71DU90voeGN-b5cyewgJU5FC zsR)09lARooM9X{9i2^242MC3*H5%lfgscqJRY1$R#v24vEG%LkglQ8qASVK^pEY8lRG?JtnG1BbYfFb|^7MTj4f zWC0`(P#-23;ISBTiMliZt$=HFAdr;e1BfoUj-FMcn z7Hm12mvd3xz@RR6XhJ+RAzZt@ap;EV>|f4aok2iZ^Oke3;Pk@ks$Z{Yjqm9ZU2XSW zZCkEB!PORb^=!G03a*~Gt9`9w%hfHo+QHSAxivtZa)CPu<@-5z|IS$*=WxC<@XEl_ zzc74Pg{ zHf}oG<9migXWRYGeX{EaxqMwq$2J`;@z#T=5vuR-u6Aq|wZ z?Y2E@j#$TWvE#UK^6Ez0I3;bqUsSj9_06ItmZU{=w8R{pqN7vjVo5r>*T!N!=fs|K z!V}jvIwmQJ@3%#Dg17I^6Pw;cUm+FMu5A@X?O}Z7+5n9MvmmRUJ#$COX<;j&9M>E%cn&>bbP(c#`>3J7bO>(b2Ou zv*|d-{3uq;(Jwmsg#+g{9it!G9j{nlwh9%koAx%;2V7ifJN`CG+kfdO`{+pnSK9dL z!%I5OT^n=l5nX%!ydl;(Bz6u76~hqZ6c5}dzK@1S%(-85?!V)RIS&cWLlEv14}AWx znX7J$dAdbU_n%*n?L8^(Jtod=_~bGxOVyvsUhvy)fR+>o`-We|ta=`#ZWL zjc~l%R1C+vhg>k;g$zGaE_WGms`1v4b@F0HvbKwzgq}25DLL(eM zFVT^`)Ij#~#7{Kj71t1LGAd}QdNihYqgWU|Ilb!(W zd+3#%!={Vf0aF)n5v!e9iIx0SYnOEeI74~@P&ZIer&aUy{lVxw zKkI2y*Pm7>F39W8I2O3GSoT|iSTyU9;_dbE=TOX9{w&Od0m;0E|C7o+d)Aws$dRE# zXcp@vfELGaLBcM3U!R|z#*&P%K?(yhPX`oUv$TxU`pD0cL8bB2WUvyI5-6((y)1c& zla@6J2>%a&VK=2s^+3irec zdxXNCwIhpz_X|rF2jeB>i^oAQ?2hlf@VyrnU)V0MUcpA~ow|+kfhBXiw0xyhD8;hZ zw3B7Zt%z6F#45YQ%C3#do~4}aqVnbbRa30Uw_fCv63%aw_bd$(VJls}D1e&U>OOsF z<{WNFgpj=h z7*qCOO#zeI2R)3Ms8VI{*K&>27&WYyOi6wuoOSVQnK-&HuFL5aNMO)^r+*?zVNT;c zosP>=Y9r$nRUUBEnQWb6yOIpeAfHN;P9tv(eS2g|O}-gQ)zUX`le*Iwk^hW2S4%V* z+--&tHR@K{p8Ort@Q$oL&nN5SH7yKZV1jTahbJzKDfme$Wl#*f9c)b5BqhPTr0N&+ z%m#0(ie|nsh~~4QKse7wAbjUZ8g$m1&!@3;7DX{FVVIbj;(dt4_Ba`5B++D&p|Jf; ziJK#_yCi@=51UMZ6NNIv5{!Ul8lSuwoV>-j7Cwqd36oR`@zty%5-FCL42cwz{5esZ zPKxC%0Xc8RlNMlDM~Iq0;RW14U96^0tm)fu_Y0Qte{eJ`f+r};-G`mGR|dX65G$%% zFRHr_2H{&j_|{r<`CA)R2bNC!s@l73idT4IO^3y%!}lr<$CFIMe$lo6PVuH|U`KCv z*T;_x|E%imst26zsIF$k81rVpoh)m$7feat5na5gZS`AsrXCn{ zeaCb{-QM3e_P%vfIR0ep(B<_*mw&nU#KzuJt2yzrPfBIpE&f^A+hrR~r-9W6p3;ep zy${N`n&yu{!0RFRF9w8c;=Jv#rhc)h|E)mm;1lA(Cxk{n@Lsj|H+4;bbk$zk3aoF5 z)$JGS_P^B->l+dKMub{y7wX*gzw*?9uDk0$|Ikq$b2N#LrZ*d6%?HKigF?|ES|awv zi3e*E?M*TJ9??#)-o96`@1;d!-)E5typA9B4dv?JuBae$U*j>4@tvw8ronFGyLA?L zz1v-X%x!+JOoxE?%JuMh&!rO-D)6v?h$Ud(DXM2I+!Wg z&xjJ)dhs>PB8L4QxhFBjs2SUF#8{9Xpv6b57NbBo=}#@ucv4eHdsLcvnbFKg=F8S8 z-J>Xe*ldn%5*|4#X+SojUTlwSMrrAX;Y9y4w73n7S_BBc#g1XYHsKmjg(T! zSy_=rRr#J0!T|w#NJ3_S&Wu{xSjN&Myr^iZ>`L>v3fV|Y_So`gZM7n+oD z&B8+prpKsesGOA4!CyE?|fr~$jTtwG?yWp6S z`vVV*zaZP&W;>bA?m<2GPHrKY)t*5Y_pZKpu*~posScs8GJM52JXFIml;88cMIqBvnsu3DKenz zfGI77+Ukp*Ojs^+&k;taLnHJb+`3ASGf`Dds7lwAKHxZpQz4ONdnFm)Qf7?FMg(-& zT(rX?_j)o{jvLFEmxXlwP-n?h@UU0E&?4hcIs`(3b?sr32qSzdmGqtU=1549^x`D+ zcmcMAkyN#LdZ!v)yEO79X{|Aom@v!oacGA?^*Ui?n%+~v>F7klCaZZfSGvj?Pg@NM z<&27=rKapqIUlUQHk0WWOov^d+w#@mb+sWKC!~LnePK1|Eli?zK!x`V#Y!G zn#I!Q)$X6}e`EhvY4?&5SgW#nrC{aw>t|j&v)28Wy?@rbRd-;+eQ?RTT~!02?2XrF zUz=Tv{^d9R>>FDRM>nblmu%qn3yNd*nss~4$}?N`JzMq~hPvw3?RBfREqnKt9cpJ> z$NreTRby+`vJw6pM)NZ6AqI>o^vk4?yczuJZo67*FfNe1C8cvX z5~NToHO>(hM@3CnwGs?Xo|<0LBu8_i#B0+q$Dr9Vhm79lc%pzB z#o|=5$9EyrYtcYE;))YiWrHv@ClS+uJ2tMPU*d#Ui$Huo{V*LTzI8~* zr#+bLg5TKew3$-yS%joI-)=Z|i2IYlLona-<&k-)d8pO!ev1y~BzjnV2oo^cI*j-B zB39jY#-C-vVb^rT;bjW(*J?FQ5DzEQGOhM1b*N@DU!}5{W*u}xGUlOB@e%B)pd{Kc z$$%@=lA3<^l2ThImkWxS31y;2ph1}sBSJ`zE(4ZK%^&ed&yTpVv`1~zm+id_d8GB8 z^)V%V+1`6ZNvW-qdoKs&WclsdDV!p+7U^q101uSJ7ii`m+7` zh>}uUN9Fn*C^dup{VR``40&kV=PyP%8h%yj$*){ahCEWrDS1pe=pA4yRl=V+c1n(= zh?7C1^efjqLmnyRI3H8a?wUU)$M&p2oxjXqj(j~zel{tRq*aVc6 zr`_Op`zsNzPVq_p`m4UcKV^mVdk~92W!mGf{sRA$)a}N0Ls*wQDULK5RzRiCuj-iA zDnxe}56Km`Ijv|oAGhMB&Z+=7FD+-|ub~D7z_okp7RpJ2Nis33F68V&;+~nSoVtA}Eiv z0<`H=H>D$oCY|C$P(Iml6ofPgr-M*iEMWc~$2oGmEhtdfId6%iC`mgD6o{)hB2ipck}%>` z&PuwKv>HkWBT2%~4n`)7*XHJ?r9+Xl^l45;GPb3Z{D}Uh9gj>Hrh~I|-Vjw#4&9jL z;TEBpp`5$PAz8B=kSI?RL~Ftp0gxj<11bg|lEvi~?{HE#=vJ+6!sV;6%U{QzaQW*$dgj%+AI_~##e74eZ)l@(_=A>vl>y=Q zb34Tpy+m7qQu1-`sz4cemw$;0R8T}nmA+&J+!Vc%E2#NN_o^}0G$1w&Y}6j!sUmL= zSKy_7JR>%r*{LR<8m^#WB^qlyDK?(`;Hj;~CwFSeyN)Yp5}uxjJ^fAm2~U6X&GMgC z{Ye$H-g+;Iy_YtFJuxuEZ|!_!BPi$(o!Od(Urr$AsseN0bka#m-#EpK#{-n?*FJj*D%_H@zo>>6y6Q zD|~GVwVKc!p~}$@il?79`+hp`Cj)o7WBpHw{ZDPST!H^_{RvddD~w%=jYaV%j78t< zT8+lq&x!5lHd{u8g>QV+L9OoQatq`33OX>>F1p*}b~lZ}F0raho)3G($~|k{v99A{ z*YT~&<2z=fgGOs^fhIgIO_esWqHV2WtKy)XOQ%@X8Ml`&AB(x#MX0UzZ((aY+f*NFKw8#%Qr6Pr1W+rIrV-=THiAttaS=_J_e_WF2J7x?P- zp2g!!C$??TIzEMHjj@_%}tJv^Mo;YQh?%5ld+EsKN+KBERb=643e?%{}T)x z(Z*#UAi0y{bkLEV>W(1Cg7NW52(Tklp~>iE5ZY_wZ|D-a8c!qx-Qx~RG8;k)JQ-#9 z9~p-6>3<7)_)Fu^$Hp2{!^bCdKA2zA<(kSqu6$N!s`)r0Ean|C*AUN1cyYQUkLJ{ze0u!J+d>xpa_nE(mhbuL%5;FbDf`?VZL-@ z)-`qmm8{9(OA$R|5s<_qG=x%A#nekJw42`ShA#cCYj@&ga z{tfB4D1R6J(yG-Uy@@)CSen{C^^TSQfObZRlcqaXDwh|qNw8@AZa(Yf6gdyc9hjWw zHz=6oJm87w(lf|z{peCZG(6i)&~VEr-x;NDNPD_vx56LXz^nnnRJ9zK93(9bIdQXt zrBl6y11AT87@+}+x@hoW|}vYmahP@GQNR ziyeM;XUfHDzn%uNMzWyy=V@hk3fBO1Z%B=KF@*=w#51MFgHCcvjse3Ld+$w&x%t`X3a>-p_@SbwlVXr`#^HT<^l8RKgBL5vuRE&Gc^Y?G&>jd1fK&s{>;?u!_7+zmgeSm$yO#`N5W_Za$$G-Q6)W}>H9oqL!1$7 znw7tcx+Jn#9uan^h$o&uVZ1Rtca5KCR$2`bX51P@6=kZ*3DfoIxrwMO>Zh|)k@;zC zZ6;gEzeh>4Q6(%)bfuR?u_m%vPqDlXAyUKwgI&}CojFPI!z>fJL`fRelKtN%qIDYv z@U?}@EnBXR+bUOdaa+YQj;*_vC*!uV<*uEatU~Kz7GN#uCBO87bQ?u1zi~ak5$6ix zg{`Y&KOKK#TxdObXI!w4JcN4KIoZD(&}QNf^Ix{&pnO>kV7RShS@)eo@!Gbf1ES3n_jU%onNLyN;p1EQ^VyRmik@>biijmDwHVWFrNmw;^7c~|@H7`Ivu z+_i2spW3K9jkpIzTlM|?;>FxgAC}4r)`Pljd$Hi`SZi7;=^9G)>deqbsN%x8 zqZ1JbEC?epO#)eTK~s;NbW|r|rW-9uL5rZob>;HSNGguNWR;d*>c7Y1h|D6LOe%z0 zC2}0^HY0oXC<_VD36;&Bx#oC@9lUMb0zF zGu>VbqetU&w`dg6i5>2MAF_y3A-UvS^8^MLDNGTkp!o;py@mLaf|JH`7h%)DIqRp&{CHXLScyO|6+&>SW9;jI7f4OM}?52 z{h#UODlbvRSdwg1eMQiuG+<>kXz`SvuCB!?`F7gZ&Vq)Mijg^ZiK$hmTL5_kzQV>xVG{V$flVq+JPb)P+O}kK2TfjC-{8`#_Red9) zM6l8xwQjk35c&5163(fN92h8p4WPA&!jv9tr7^d*d&d*#6@^oB)5m-PUocSgJ zF`M5KQ|3FnP^LnrlQi!=NyNneNAz~0aDF!Q^?BelqS7*2E0Iu(L@1J2Y$2aTI#|>6 z)YY1&o4qxkSwM200RU@W$ZGc8jLu9abo@e|1hYu8NtB-d&nRXgYZ%p^@+_2kr1BVP z*HnBV$8%zAL#Ur@!3xRMz63sEurPszh_9k;0B5>P&2 zy1~!QhatZVPluw3EJ-bb!89C+sG+#oQrn1j{vYJVRcS;N!?Z8zPl;rZWG;Yt2ght_bp}PRCB?>ZCr>HS}lr|wQZKQtrf&; zYF}@7t>KTGmYF`t#DAZ^Y>hjc-W*&r|LK`6=YGN2gzH6Lf9kcT*4+2%Pb?3`TlW04 z|Be2&um9V$^9 zahr3w8KO43b%!%%TR$m7wy3^P*7i9rd~;UQ)k_Dr9c9aBS9@1m*8F#LYZ0NmKjt{F z?l?dwu;Aclk$rfJZ+AO}Y{qviN4k&g&wlrS1&;Uj=L}`%zHczX{(iQBOk2)Sm-+qD zf+3&zeV+;T6v+ZX1h&qRCZiVGfbPME9(F&_BV-74vd*v9?j`}2sB0;}kP1x2XAgmlhNUDJ}KDx4V#9Vnioz<)Knorghp}wIyRev45+HN^?I6c;OZJ^ zD(zL#{p;9vyY{>%GJj1@>h&$uu)K)WDcOM#Gx8u4VV{rx-_QX5KfzdVDAW;mYfu`- ze=-_*7R)1c0{Ph@SWfMFPA$$`y?X8kVCLw6{95TfSMQQ#M{g)Ns*5{Zublh-xqFU! z%v^ULl(X!hGcG#XD$Tf~I!rkMshn%pJ2iKnxHBk}AC5VWtUHddId@d%yx#WOj||{^ zd(P1Y(>vCJqt&K&s!gz;ozzYdby_u{S(sL6m-LX}H~rD7uU=6nP9`;0Z1UDf%d04tC3D07NEn&kx(Spv_r6 z6qX1EZBjsRRYNfilQUDi39AI#CgyRc4V3!%e#%Y{U*14L7F@q0-K1^{PEUj*xDTD} zOD9=KiJy;`01@TZf#on zKxxXWV`Z&kS?flb@1?xOEYd}FzS8@0@9+07S`eH}*eY6DH!Z$TK%5GfuD>$<{b{-^ zmR+P#w-R{$%4=8t_^MFXjr04Pw!KK{^lX*3E|Nk&P9*_d011@$iRFD8!KbNoq%FyrD9?WEf2qqXvP*w<=h=WL80F~^ z;r176Ma8>PGJ*6i-xT$F=u}NevWREKKzVGzYZA z;J2gz9G$kUOhqj_J&r~MZbcn)wCVjetxI8VwRwVZRBGUmVNiOL(na&P>VOjwUtC#E?)TOOj?Wk_Y+wO|XJDZi2Z>WJ838?>x*+1tGehXLon=e~JRVMhR^F znrd)?YJg(^bO#DWRdo0Bh<4_a0rs3rhZbp%NAe2~%PLCykP zB`&=LC1wUVwkytMjGD*=1s0+>FK!5 zu{4W4iKQ37-wEZYR_StStgJ;WYa!p;u~M&C>Ro+8EcNZ=n%Uk+A!jdH%w>e#Ymx@W z-{T!hP@D}BTACr!cj7&Gb!V}X|2c*K1sR!y`V7tge-vt`;o~9Wi)H)?ibw_t&?8=0 zWEuaH9~&*E+J}xhll9{>x;&Hnp{LF?to!7Q&O=gv7?RYV(oW*P`X~ta!C`n!Kz}9q zwIo>+0E{9u0ib@54=6w%VA=vXzg8yzQhz!G6wLr`*HlHxiw?f`0?M5^ae*RKIDCuQ!C(;Jl*XQGao zSlc8sjcxL;o?1nmegjch;P&JvG9Vzv7V)0shm`0-Z_Ot#_ELCKu#3Z9Xd^w?U^hJq zv#SUhxF0#F*gLraKcX9>kBOjnq=!nr=t*_snkQe{u7mbHsEdJ&aZw=`%q|X&}Dm6Xlf) zq3)uod@H&T+8?<5gbz(kK{N;*)F7=QQlW_=)jB?jp&6p<#}nDIwhlCP%*aH7x-V+9 zM5>jJNgwU%*2jxPly4*Pr;JH{$t+r&%jKJvx`%eI#QDnQ?_Yl9>i2;!4{j76!tSZF z{8j4@tgq(%AWvu<+;ATIz#uwLFXsL>r#N2O^xboRpIg3N(;zgS+^9Jv*s9`vBeA|Q zv2QHa7g+BL{Ag0B>DjE@D_pt0ceiE5xb4(w^kiv$rw+_-;Nxs6!pI*hav`7lwej7wM*? z5u7Ypodc}oOq^y0@sipGY^eB6TKuNng#(7ourU%a22256z=8{!<=GO(715eGmGR;@ zrGJ1%_3ipVw%@{#Eoh@hb9F96RqfQ;uvOEy*<;pJPW92(T_hzC>`0?EY#p%rt=NKM zHjOwdXQ7KYRFeHGqm_x*RZ$Nk#px{Tf*XlQnIbI_X>R#^zJ!S(y9Lt}K55mr@Ups% zKyJ^?;6#{UqBOTWQ_$m{B-t1wUuqQ)%swS3K_#E&tAw7Aq^ChD;1fJe?0)P^M97k! zGp!Mz4fv5hx~R4Zp!9tVBWc>x*J7T<{kQY83k^f;n=`OxXq)m8E@*pT-DZn2jUbkZ zv^=x5K1P1OCWEckZJ0bv=EgrsewSh3Abbtk2@LXdv4+H9CsCrxYx9*9N-$6o%h4cK zbURe(TrR4sk<2wHeYlJ0q{RC}qCC_HI^5Zi?PRy1c8adf4OjQ#2>9XLLZPr@)7B~9 zkF;`JC~U>ubVDa&Ll?xM3*fV%=Q*q^7HvltkFN~e8UDly^t0T!64)$nfzHDY$CcjF zKjgTAX+1z9ZUJ$3i0+Pap?i3%{y2SZr3P_I%45YXVsQ&}Rpa(5 zsHMj3m2rFNgPg3Ayv1Rr5dEXcmAcp4Uu)l}gsy7IvSG($a3gG~=cN&#M@RYM$fw)+ z&WD^K+sSzJzB?UvYK6i>o3;Vtv%z?&|IiYE>e7O8fPPdDNEEF*2h3Rx^gaw=~NX^ zStnG_)AcL-TX<1yOZ~8{4_ZsUWDss*>Ky-%tPlE$vB>28q`ArD{Fs9w0XvF0i9FOt zA)Wthz-|nuq3KJ6>7y=m7Zv=fz)s0b0(QtieW>2}Z+k$5GY!}Qx}*a;SphU1uxRto z09Z&Lw23;n4uyCP(rmp8J9`-sszXCV%0jPXnBIDIp?{ZNlN||D7W#XZy4@?VDh2vS zaO(f`6_}Jb{kV`6>IbA!icf6d17{{bR=ReRKihAGI|u)5P)#uSbN%=zf?fwee;%o?#uSlrT1BUWK29X|6{_+4}?3%@v zTQ%#ps%+t}-X{+{hDYAw|1O+=u{A}#0qP$9Y%Ol^Tl@9>sZzS!^cdRs+T7+1^Gq3Z zSDrbK%`-(3^`-K(JvPr2dDa)?nX7G!KQBX`X)(0%zf_*~$L48&T%H=`T3o26jqNvR zU4h(3g(?y~yq&Z>h!7=r8!*C3(gro0{u-Zp;c(azfE$}xB4U}il~ zrIeQ}OFrt@oK{1R5;OU$ts#BhbOuAt|o2eO%Z(0NtyDNKjH z+mz7cZvYexTuou1NaboA0SDtwd`c{pJ1N%C>V~o6H11@N5`VN)u_b@gxRb_k@j$V^ z5!?y0X}A+_k~>kB*ssK$q$ZNN6G>eB9aM+OjQO9D?Ym@rkBmPd=;vqWl3Z%G~rP4 zNU02Mc(Q0S(uSvIkF-=ysebrE`4l(w{@K}F#@Quur{-s7o>z7&G>jgtAsR+c*6N}k zNxVc%L!v=>vAa-b3a9rof}Vd1&`O-%*L9Cz^}vGF)Z%8J`*vsC;aRDUJKW2WxT9*N z0Lm6P1^~ZW2+1o7>9lK!9DuJSu*lGVau$LI!xpS2Eeow&G2kF!Y2i*qQBxkSAKz)^ zYH$sCCAdr+lDhFn?!{Bv6;&(N*YjV?U$bs_`Zp>LES~wWs%0rBUez3{Y8R{8mu%oE zmvdImtQ=Y^5=weD?R)Q6*S}u%T9x4Gz!wb;toiO5g~}mZF^NrBw@|qUce4rZ4w%bN zlkx1zt(B(*cNgqC*~U`$k^w3smvvWlu_r^~lcBhy^hf7cDmL70I|g_^L-zq)*0qcF zz*7F&3&LmshY<>Dx9olR*k|0{v|7AnZ(qxa*$>>!7e+5^9S#T=uWcQk+_Fz@*bk@? za%1*GciRR3#jT^4geR|W9lfz-zp-J*SxGquTg-m&Zk6yvVC%?5YC( z6I=K&#`Kn>|AEPHOjn3&m^HQPte{H*<*cEmuMK^{lqHKD|Ny`PkJ_ViG z>CiPvG*4`#v=(?N8nCf+VufvKF<}R*!5f?`)1VwI2c#pshxjLv27g@S77XZA>U19& zb9BZBPEKe06_@)fuHaXk9p>M1&R=o)%%1&8*3~Rs=|>!ypB#n0c*#fjplit|v$~Ud gvXlAnlJT%k=M<{iA97@QIILfg-2XR67FL=6A2pcp>Hq)$ literal 0 HcmV?d00001 diff --git a/benchmark/core/__pycache__/project_creator.cpython-314.pyc b/benchmark/core/__pycache__/project_creator.cpython-314.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0756bb8e3e3a041260e395f8e8d40c82a202d671 GIT binary patch literal 6400 zcmb_gTWs6b89tOKiJ~Z3Qf%3ZotTz$^G))tZQ|Hz6UWZQiQ_P?+pcZ|Mxt#dy09b_ z#{@Ry(d*Df!ye{GJ$l1{8N-0>b!dz3@}eY4q;cL*V13xr;4}t;buar5DN3@tX5EE? z$ituKznt^`=ltLK`+Qy+!S(n1U#$Esh|pi~i*?zmjprOR?jsJV=qBQbON2@oPn&9k zr|pvcBB_#{h_kmM)xnW)cfRN194FsKC<)R#(0h(9G+Gq~{fKVk-{a)-1VZ$joV_h1 zRCZDpcr`1tOYon(af6+f`LwW_mG7`~f(*nopGgSpIU$o+N%Qg@dg8yiXxdOCD6FFL znItbKMNLSus-UQ>WE!Hd>I$#2iEKvY#SD9K{^}KWNlXFDs;I88IaN%F>KdC!@roiS zG&c8^Wt5m%Hf&$2*)G*>kJ9w~im0&ZY%-S;*kvIj$UJENii%rV&~rf+(^*j#40(zq zq*4kC7PIrbm|7K~f#+zSG5xfVQF1c2f@ha_Q8qY)_jBT1J|$%EpwbdAi%K>FHmj?G zkb%JpY|UIHO3(HXIyuLyD+wzO@UtEMc7(|1j~qA_7Qu1m#Sx>`wuBbY9Q4_LS)M;$ z{g7#o~swKx)fj@PQIrW4JaN63v1qeV}xhtsmN6WydGl5Jsac#c+O z`Oy?HEy0MK3y7l@oD3Sa_1B~V-L>HQCKhpSj*b$Xhht(WMsVIJirFPNY_;l7@GN!H#s#c-!egn=3Kzt` z(P|Wd=NoN1@ITwu{1Q#I`Q%#g40EC329NLYlH=>VH2ppB1&z5EXgn^-!?iAWKvtV^ z4;%M`#=ZS(=pA1}KQtVcm_4&`80+9VhwcCCtSm5JKPw9~$M!d@&zlJE>dWAt4m7id z8e_Z5n6-#uRrj!?E_3F?udIV3W(?Q+Oc67R*^4{M9pjF3Cm>FHqKNB-HPy%U#~hNk zK6-B8<&oJCfuVZjS*vlI#V{c9M!`^6J`{TMB zv8WGOd*Cvx><%Q_I?*B2Y5b;$E32pNhmc78+kOk*q~Dc4f1_S^&0al&+Aqz-xF;1> z^WOdxXC<{2b2_Ok+?STPf4I+s#K2@+pDqtewRixbwq zRA#_{uO`C%88Axg4lyI;RQGs!gO5q* zp2{tY8AS_Pc0_@1NnDQJR&-)j3z$$KD%_K@vZ}BX?2ifE3CSHK&uVUCU{M&37J5TW z<1TE(5(L!9X|26xw24r#r>Z8hnjOs6J{|8me{FL9ow+F%TX=>Z#}78eXO<@-LMDO< z0-roXv+Q_UPriO8Gt(*q|XY^?q%1AuHIa#s{qu`Lk;B7vn7kySCNu1q9_ zyJA8ZFkbpuF(axXpBhjS06iv#qJx$wRa8^Lne*91E)C4%G4q`skC}Fi-^wP}44p~w zu8FcHA}bS`L%PSVPH0YetPH%XxukpVv8&KHi5s_;2NDx906A#93(xl=XE=CM-p_%b z$73MrUr0P#<6HxDm0dNM%_i`_W71wOVxlHuS;k-rt2bI8;DSNf!#^G~2M1%tzR*eR zHO*nfj`&yDk2K0c!x}wiB4QYZ<}??g7Muk9mJ(E;Szgwi5bEbeS!;>L{?!U_iJ3$y zmlU)>G-kw8thYB-jaHX%&-kW0)8MV8HJ#y;$s5_6oDi<^(zMoW39LtLHlv-WL2%0m zrMdyYgy#|oK~a`+snlAR)-s<}`BZfiG53h%7~A8OF|NUj1eTtnJCzl@_I0P6R$_|09f6T%%vqoC-FlM8^BkHTgxL3s}6Lh zgk+CTHy2VIOKq}-WbF`5HIC|*L7PvbH9v}72Vm*PYI{^H zk(Gs*WrH!vSve}L>0xuiy4YJKQx zExW>xT;XlX_rUvsH!qebcGrno+l%dkk3&QEuWg48TFuW|k39~ZT&F9Zma?bgp{Jwl zIsC|Tc$*16xcb4>jouP-v_b{TRNF(Ut1v@&)sKMRxQ_aC9qC z_KuajW541njQ7EX?_MZ|j{lVW8T}J_>-FCZl}=nO9-l2XUn?R<&2SWMxiwFBQ`6mZsPXmMN zXDiJu`H}ql`9waves0G`wFh?mDA=4Q^HUpDPEUtO>G13z;8z_sBj`B@l4 za13V6AIOh>cyD9q``_O7w`@>_K*3%Z+vGQIY&nae*Pi-MKI=ijq1}FCu#v)0p}Xii zR;G?WdzV1I6FavErJrycYY(8E*Z~_|n;R@x?AE{8G4F@=+)p`FKIE3~UeMbt3 zvb(qB?%m|KDdvIu19v{QdHo3$18e9$m{G^!6507V=`PZvCGwSRXfR!c{wI-h#jeRB zef}vq^+Eu>r@^B|@7R|wz*ocIqM~=`%NPAHAQ$}|U`otf+ z9CLlz9-Ohef7=wE2|0e(?z!CW`CZI2gFL^tdu9%Je;@M99CIgtr*`4fAMDoT^Pd|F z$f$-O2`vK6ytsxl&0-A|a9wkMT)Dx&hSOPnWPZ!8 zZ!)SRYmBPS9r#bUmt*_pBxrGWLYV?;5VbR-H4=ol16*^|#)Z*5zCNq1bqQ8= z>g6c>%6BYuJ&)%6bv;(giIPXLl@i&YrEQ+vdn#!77Oq=x2_0MPM?XCs5x(rL`R~7 zGETuVjv1ZFWRpVN#N>(=ZhVV1vTFw~ndoBwRNz6_Gg4Xy)Mdbrc_^ki5_s0MBaNeN znCC{w6xBMXWEn7gm3_bbF;;tZE+z1aVD;GR2`G`~0Q9UG2d*&|EV24&ui_Ud|3Q}| zo5`x+fLtaSW%r4jg&6?98FfS8h-!WFD}ZaO_UzS$%b|Oe^w2u32^7n(Swr)Mw>G^jIry1X#mBuS#=s4Xpnjw@@dQxs76p62Uc8y z8l`T4u9U(v2pWpTR%XL z&oF-Je(32gdyYQx9Nnh8Mc=6sHTD@3%wMZ8E&0_76E3!oR+vK-f242`KnCmEal6{+ zb!ImR2%#A4E&w{{DS3M~uWvK{2bVs$lutq8X9h7m=!Im)`18KUp3bu8*h9~;vggDj z&xv1<#aHGY4_+@1zWs3U?egHa9u0oW(A`_2`T!od&k_|T^kDY8vl~-|Q^odyt@-uY z5;L~VK$1QAlsWaxjfUPOUbsO6DF4S!5cv<5oBAI%_3t8^`wD?OHjiwb-5MzdUn?;u z4aUo5X66wy^N;N&7WX=9^a@@sF*C;J*UQWsI}S`YQ|7Nb!jpZDk6i5J8T3(~XY#cB zqcef2kp1JP@cF3y<0ymMr(5CvNecmYor=fPP(qK#dnnx%k0-N+p!Y_@r-m6|7)e$*gN7d-xCJp{Hc$Gdm&=$`^q9pQ@NDRsaA1 literal 0 HcmV?d00001 diff --git a/benchmark/core/__pycache__/report_generator.cpython-314.pyc b/benchmark/core/__pycache__/report_generator.cpython-314.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1f72f0904bcc792dc1882cedc5251f0b2f6353e9 GIT binary patch literal 17274 zcmeHuYit|Yde{s}iBE~5D2dd2^p>m#^|1A_Y)h8)7A1KoQGQ6GDUp)7CPnU$vMlZ+ zx=Gr2+W;#A36?i-uv{dY%S94Yw@tAGS`!vn=Us1ed)@r# zcV;+z*req321tK&K%O~s&Ue1o`Oag`_f2blo{WI2cYV%wLq`z*9Y64wDxP`qkC53X zXu?CR5i~hPdPuknrUa7$kD!{M`)Q$uu#+AkEz%Gk5uF2R4xI~W?y8s;_un80%WZ4Z9wPT-NON^6MK9QaGllbpQ#9V8>`*ni7_nS@FiZFM;r4>e)k zwlZdqlc6@@KWZ>g3Sj7cnJkJV#yST_W` zoxoiLe<9pnJci6ZVFb1H7ecq^;%+w*3NV*$K^-oau;oyP%W1Mrp2R{6jU+&dx`lZJ zofC(brol_H!sqhvSs}z2qDAIyb}{&W2HP!>h2EoT03JkTg>ZrD^?EZ zzQcw^^X78EF|s2@ZhD2(%+;4dN{^F?tG_0Q0>TDT41Yni2x4*;t%*e&lR__S*xa}m zu(lc-W8=Cdx0P}0EDjIjzH9dAEY|xv$DVGBu{oSJ#@fE&cIy&dtlMxhRvp8dooS0V zyAIc0Ou_MIVyQ8CfLsB8_lJ<|6VJqj2a92GX|%BNpwhRAlnqGI5S11k?1rUPQ0TKn z3Typc{+s@pz`Onqr0P0UBjp7oxsVF98!2oGkb#y!`QeEFL!|0G+(61fBpG}L7_wHr z01k+a_)x-m0!z-?#u{W&Y$HEz1A?|348~nF?t2l}mus92@o+h>!SQ{L+i<-rN%Sr@ zQ5Xr7+q&W0wzzQ*n_Vu(>0)ePz|_vR&ExLa`o}N6{Yt;SaK$!!RY|-Qc64v;qRV+1b0RLLGkbZ zPPDMp*Yw9ae;raa`YlM=iX^R3X~99)AC}{)`af>-xsj^Q--DD*NYeBS%Icu&){(LX zNop8SLAp+HhqF5Uu7J~N6BOXfqG2am(nt&dhg(n^A7^D;Jx+PpEx-ViGB+;CwiE~# zv|mW=!+2v_s3XqD$GuCC1qK#?1dOnQaEXkf1)%imMcb1TZDt6ga3RGq`1a@H8JH=c z|IfmaMn#ZOCh-c)Qrxv5;d9A*4Y9&5k+@_bkxQ-TIpTR)z`gUzMJJaRUVk~6rKY9E z90idknSk%HG1798?a|B{mGK-@6IpOO&V-N~Giyna?D>pZ%%k)9UWcAhz9p6dT9w4o zEjp9i!Yp*uKZM&fU1!#8(Oc3fPSZ-sTVm0qVbONyoT-=6ER@R5&`Wt5rHXFhnUpHe zggD#gs*EIEojU)}RO-_!qakw-)vPG_A@>@#+Ei>jzv)=%x>s8b06I(EDWk3a)fRMJ zDxGxvS;k`n&&`h*v5hPIMx6kTno@b7n^T{7T5rTz%WJsKrQ)JnVa;uO1N&&_ss0EF zJAfBm8uhZYr_Qt|%vskPaMpbW)}Ax4k{Rbg-5Db+Wdyo%>GQ^1*3R^&*x3bRZbnMy z>0W-WWP9UHWbVs?tN&D7nduMkJvs_e~L^Ov+yx^Dj%6g{!kWNmrlbq zM(Sti%N(b$s$RpquHd~Jdu73RIf;>%oxYN~D|Ly_#4-Fj4wq!5_zcP;Yl(f=MUvMy zw|}dKmvWvPm-I~fS2NI;ok@T64e86XXzp6FJDT7V#nf4tUOIigWhu6uLeY47dwS_L z`foBLE}wz*Mk>}7c)Q}RH4@sLvS;CE=CsoYyfWQP)kzksy2bZ(R;xODPjx$OSCGDX zs#9g6S5lvN%IWrzh0oPDrm^tF!NIX2z{@o?LX7?y^+cpZApFNDZi1v zt#3?Y^Q~!YfnDECZT%LzT3Z^Q>Db;$#hqDt`rbk*KhBbOW8!TPPVu(AJ@HdmD`k$K z)p@KII1*(~Xg3+B4?eQdv1@_VX|#+I%Cqr zQK&aB?aIVN=Gt*BCKvUy)HoD_sNN!3YNzPO7U`)` zgI95N$7Z)si_jy0TjsgTICr-0viz*$8WZj-Q~Z$6Te!eDH{$2x2A9pxaQtGnSM+^Pv4}L3?ma`-n<2?`5wh9GA4$@NQ@gYP;PRpGx!+F zTQG7ToC{mlBw()j{uWfn ztH&CXJ0-v!0ws7{J^7BQUn_U4dy81*0RL38i)+#Xf@yf|yix&{h*c5C z&57!5Wu@QQHs6mk$$Cp1PB=D(@nfOlokw{XtJPbCF^RR(tEOs(Z7Q#``F1>8taX)NQ$ zIa^ySo6^lwjnw?oBA!zcgO_VWgO3K76xf_#;*jSi1h0~-U1n?^k98XWkI2|Wbn%>Q-YD^CzeDLyBy`%ZQE9NOq!%41mle<5_5)Y!xNL>vBS;| zTn^I^a}&ZAmw^&D_N+8=>m8eNt`=q731&5MOEmKifYrj^{r9j6?Gyh)UU*>h?}ke{ z4!44~lita2@8s9Y-e>v62ewE)wLbygmQPwAwfYiwikgp$nnOkBkh&GMP9oJ*STxPoVn}GLs`y0t zNQtPfZ>Z)Is`o3Z_isF3?)}@nfA?O98a<(AkEvOtzZ0U&FNCCOgWR8b7N>O4x97Wu zROiB?*5Bk367~LjQAys%ijNeixHT+ki$5IP2urHs`DnhzC;wFWQ)NIDSPyBtPP7+} zwHFRIgSL=%5^1K6R7V$odF5}fpxY*7-U!WDPG;^N&)h{e26^s>W_Ho^1EkpdUPwyc zBcE}!k|=WmOi0^(qU}A__8#63?uE2dNHdKTGZzJG&g)QH*eYfh5xy zbe06scz^v6{)`};?k|`i2k^jN&Pj-=#IuX}= zC9d&14&C9#LB8#eK>t)S6_u9z+!1N*H<}8c;nU@xE~AD%;Ir~lNOSo~aYQrzQ1Ojg z>r;QK`Kbog^atxgrI$nMD-R{#s7nsqpX@%`Mb*7QGNc(i(Of~AD?xKeJq)#l8lUh} z@lVBw8UUHJS3-ru55?aU79VVUvh`>SRrLi`p^}RyCBvv>IQVX;aO9!*nLPjFzK{A~ z#tB?Mk?X#a>(KeBBSZN7LR6vpc=n@NRIWP|ekuOB81?Iq+@VebT3klD8|cPuRJsyY ztR}#^4|~4s`*|O_I1gha)U$+)H&OR3bZZrru0<54XK{3;<6*@_VzAZvhYp3P_Wa>Q zaN@~m@X`@^)Qk+qqbjt#fh_mXh8@`*X!|~L?4n(6IuS@^iSBv$!HKx?D{*CFSaby3 z|7Q1#-NO$;x-rx-j*2J3lF6vJ%(vyYN2+?l;+{BYG{45*6ljao_M!fnNbT&A0oB0Z zUO@_M;8Ih3*zHANq%}u0X)VtM`VI#ot(Ss#BdrrhibyLf>p50d#TssYCu!LgFpO?S zDs_jFNaaAVEmAr0cXdZ*bo~apc_(t+jMnc*uJ4AXA4Do2puP7|#Ro7ceMnB@xk);M z=cb%lL1Lmgs0@p$Gmf>=$F2UYfGyJ4A1sbEUU?#qG|q;~^r&q(Z%AI}8D zhtf#%VDLhudE`lZqzxAmjgE<4ZWyuD$+0= z(#{}Fk|fxXqTu6!j|L8wLh^DXDt|o?0&f!_xIpxx8C>(`LUWP1*j$2xOq!qqU-2LZ zvX0OZS;HCxNvDlVKo1rWb$(mFCa;__)Ff7}a)`2}x@MMW1TvAh!ckVzhO7CJ>g zgxgm_A2QJ?eoHzfX{tfWdNH;;Q8UDBqB3dEW8n0`k+o5$q zYHMANOKcP`BpjH09YOHHNd?3hIo?7LyYM#XlI+49#Qcd%jzcb4#|vPqAdC`cBBOH z%={A8mS4OgRa`@HseX~_NcvGyWt7BtswBn~U8M3oM$Ul44zGSIi39uOx@RcnHNoEt zh^0bv;f|n#*b$6V1mP@PDd#QKSlC0--4I7EF%)-@##}(0xC#L*MuqBNtC7r z5Tr_-TFzqtdbzMW83x^z{6LvYK;{csWiH_<@b}ks&ev2EGgsq#p3GYBO+ubECym#n z&PdgSOYM?pk*m)rfz`DiyUkNq$C)~g7kVILU#B>YcHmnDY%MmT<+Aqz?{A^ZyweCD zjhh)93U9G(Zdw^QlzlY<-rIP(--ttD?ch$wBz#ae_)6dudDpgW@wQHFyLaNJwjK&% z=~?d;l{iPE;#|0$+a2Bp*3CqZ=*O1l=@~=?2;!Nuji3>gmk7l6x+m)(8BuksIlUX8lOp4N=B zuN7XU-MI_r**5%%1)Lx=Uim2Jv%>zIe+qGWcySmP<^#u9a}neWgKON7{8wBNXRyXU z`?(Hvk3X%Qc>TRc0D!DU@lwcXG>-tyk*qH&p|tyFQ9;IKd{nTsf()yi8Vc^hmm=wU zVBIO4n;^3uIulH!c4T_D(t^}FU{%QAS(US`3pj^+I=gCMjU?Rg-3acx8voSiZSZ1Q z+aD}_T044*dN^HTgM+10yl2|?FXEu zRB_Kq(hHMWJ3q|mClY*RwGxCG<|Km;G}``J31=ivn`hrj4U-9SS=GRj!!f3yhTAJ> z^$xmaMrQl*4F{(Od5ZVsM{3|Y=7vtNlvM-A0FoRhlb^Suj^U@ZBP>62*mtqXc5;k- zkj4<+Bj8c^0!uwa))Lhq(;_hrJ3$w@f=z(EjHDsWSo!tr0kNM0s~=3Yc;`XGc)K99 zkzbJbyC|XEy4@m-2|7AsLdLlpBW-Tj^??gxpYvQuhww!8z{OmSwZGAn#e?II@7#DA z|KGpH9iSaK?i>!NAFF)^zv@qopO*W|L!HCFb&CMv_o{12_+sUKDznh*05T*<2wjhb zHoyx&>bT7Gf@=_@!@QynST$1B!R!MWn6Pu~@9eleEh6T3;hFh;NN{+8eaEqF+O=6c zcfs*}7o2zSF%-)?D2me*^Di*`zl4N<4sqi-f|dL^L00sCUDxX~KNk{}_5P7Roj$2( zJFWoNNb!L=BGLXvNLH2sRAt$(>Uw|sf>lVHj{IlW1@jO@NYw-Lub_bWJxH=io{J@K zPm!F`eO=Y=Q-S0)Ao=IHKT~|B2&@LXBJGz>sLP1D{Hv<=-!gv)ExcmcoD)858}tg= zDX(CVVhm6UE2E$EBGlUyB6OMZCJf> z8h=zsHBaakTUrVjBS!TToGjx6uS(2KoZP|*eDq1MPDR$e2!S6EOXFr%pfn~lue)P8 zjCp&@%HZ$97!zCS-f^^Om^(PHO6-YXIp-XYB^VIDwK3R~nGFmkg2CoyU6RZ^ggQ6MNzr8NcP*uwt%2#F!KpnLL07yv(?S z&2xrKnz%mv*O(2qBQaO0?n=&cd50Pv9_Ge>S@uECd&5(9+4oFa zhD61$IxJu05+xlErBQj&Q+ai?wHwa4k)krBX#O?_Dt;p&6qSDtu96EOsyC<#Q-fbC zhu|1Bi%%1&`op4u)DvNV{r@gZEgVPxKj*@14U5`Rd+NJfQaQ9g@l2k#e+`cKrNzgZ z@xPO!rA<__1yka&cH($y6`9^e8isuwJsw*@YfhwbMJ46ORkO!)j^}stIXY>cwR{KUixzN=c`|ujwM|W<;TTc2e!bqXC3`$NFVOde=8)^ z6;VZ{@12OE1^fi+)~I0_W+`a_7?N(_4S*Etu)NCO7q06K_B}EGr=h5_%x4cP&js!U zSHm6CNB7X`JK?!^o>kUIDmxBj(f0E}@~>8W;-}h{|G4vH=|8-Gkn{J|&3~m1-1^Jv zQ1t++8a$9bqZ<4hzV`w(KGT8hSwYb!@<;M$QT5kFmAiRz)4T%42HeA&OdMxhwx~j{k`d&zsl!mnVP;gELZY4HfueT!lC^$Fk3 zLGdSLkIMcRUL(J$!|GW6%L>pbL>W}{zaYrM{_hDgXMhhjP(K#>^da#4UjG~Q;cBRB zG}1mA(T+w`*TSMPm|+Tv9twF^>e45-9^C@Ol8*kNrS=6|w6vZSalf!J=HksI0?BwgMS89OxN(k+lH!w8-?iF@* zbTY8TA-uA94a6F8Z@BEsZSs{Czdn1_-JRV%?VVllqq@2WJ3HaW1-js6nCZX?-U2f^ zoUq%}PMpJgRU2^x3sF9f97~1_*@z;jX5Vn8Sr}qCmtkLXdU3lcoXkM71%J3i!^|w) z;!n@6F#6<^WSE(QCuSZe5}YjHqzfnAki;7)h8euK-Ri;DuihPI@S8-uu70?M{54*k zTVye@$z*{5922)jvrBd!)Nl*+J2;2eBdlp0(_=El^4+Xz`DHkk1K&_@d$@Ne{1(D3 zaFQX1)3Rf?US__4G7|o7HKfmlBuRcN${|HB6a=aGZ$#zyxl;1tcUm!7`(4ovNmhL4 z5_;hFd|OC}6c4>&VJX;wv?Qu1IOz3V3`h?zpuz!gV;_wBX3@F9;7IUyV3;B`9aR(^ zc>Ud|q!DHyRDJ%rG)F6Yt{|j^QH2_noC{n--P1=isQ3nkeBV!_mW#n9bZrqCZ=sUg zQAKgIK;2YfL7jgQD$4VptMZCu&y~d`x%+e9w!xtINayPa$y%O@&VAcO Kh|1Wvl>ZA7u*CQP literal 0 HcmV?d00001 diff --git a/benchmark/core/metrics_collector.py b/benchmark/core/metrics_collector.py index 1dfcf3e..3b34e34 100644 --- a/benchmark/core/metrics_collector.py +++ b/benchmark/core/metrics_collector.py @@ -19,6 +19,7 @@ from pathlib import Path import platform import traceback +import os class ProcessMonitor: @@ -28,12 +29,29 @@ def __init__(self): """Initialize the process monitor.""" self.is_windows = platform.system() == "Windows" self.is_macos = platform.system() == "Darwin" + # Backward-compatible primary memory series. self.memory_samples = [] self.peak_memory_bytes = 0 + # Additional memory series for better cross-run comparability. + self.memory_samples_rss = [] + self.peak_memory_bytes_rss = 0 + self.memory_samples_uss = [] + self.peak_memory_bytes_uss = 0 + # Partial USS series: sums USS only for processes where psutil reports it. + # This is useful on macOS where USS may be unavailable for some children. + self.memory_samples_uss_partial = [] + self.peak_memory_bytes_uss_partial = 0 + self.uss_coverage_samples = [] # fraction in [0..1] + self.process_count_samples = [] + self.uss_available_count_samples = [] self.cpu_user_time = 0 self.cpu_system_time = 0 self.io_read_bytes = 0 self.io_write_bytes = 0 + # Which memory measurement is used for the backward-compatible primary fields. + # - macOS/Linux: prefer 'uss' if available for the whole process tree, else 'rss' + # - Windows: prefer 'private' if available, else 'rss' + self.memory_measurement = "unknown" # Tracks all processes we're monitoring self.monitored_processes = set() # Maps PIDs to their last CPU times for delta calculations @@ -49,10 +67,20 @@ def start_monitoring(self, pid): # Reset metrics for new monitoring session self.memory_samples = [] self.peak_memory_bytes = 0 + self.memory_samples_rss = [] + self.peak_memory_bytes_rss = 0 + self.memory_samples_uss = [] + self.peak_memory_bytes_uss = 0 + self.memory_samples_uss_partial = [] + self.peak_memory_bytes_uss_partial = 0 + self.uss_coverage_samples = [] + self.process_count_samples = [] + self.uss_available_count_samples = [] self.cpu_user_time = 0 self.cpu_system_time = 0 self.io_read_bytes = 0 self.io_write_bytes = 0 + self.memory_measurement = "unknown" try: # Store initial process state @@ -107,7 +135,13 @@ def _monitor_process_tree(self, pid): self._update_process_list() # Reset per-iteration counters - current_total_memory = 0 + current_total_primary = 0 + current_total_rss = 0 + current_total_uss = 0 + uss_valid_for_all = True + current_total_uss_partial = 0 + uss_available_count = 0 + process_count = 0 # Check all processes in our monitoring list for proc in list(self.monitored_processes): @@ -117,9 +151,23 @@ def _monitor_process_tree(self, pid): self.monitored_processes.remove(proc) continue - # Measure memory using the appropriate platform-specific method - memory_used = self._get_process_memory(proc) - current_total_memory += memory_used + process_count += 1 + + # Measure memory + rss_bytes, uss_bytes, private_bytes = self._get_process_memory_components(proc) + + # RSS is always available. + current_total_rss += rss_bytes + + # USS is only valid if available for *all* monitored processes. + if uss_bytes is None: + uss_valid_for_all = False + else: + current_total_uss += uss_bytes + current_total_uss_partial += uss_bytes + uss_available_count += 1 + + # Primary metric is chosen after the loop based on platform and availability. # Measure CPU time delta self._update_cpu_times(proc) @@ -130,11 +178,61 @@ def _monitor_process_tree(self, pid): # Process no longer exists or can't be accessed self.monitored_processes.discard(proc) - # Update memory metrics only if we got a valid reading - if current_total_memory > 0: - self.memory_samples.append(current_total_memory) - self.peak_memory_bytes = max( - self.peak_memory_bytes, current_total_memory) + # Choose a stable primary memory metric per-run to avoid mixing RSS/USS + # across samples (which makes peak comparisons meaningless). + # + # - macOS/Linux: primary is RSS (always available) + # - Windows: primary is private working set if available, otherwise RSS + if self.is_windows: + # Prefer summing private memory if psutil provides it. + current_total_private = 0 + private_valid_for_all = True + for proc in list(self.monitored_processes): + try: + if proc.is_running(): + _, _, p = self._get_process_memory_components(proc) + if p is None: + private_valid_for_all = False + break + current_total_private += p + except (psutil.NoSuchProcess, psutil.AccessDenied): + private_valid_for_all = False + break + + if private_valid_for_all and current_total_private > 0: + self.memory_measurement = "private" + current_total_primary = current_total_private + else: + self.memory_measurement = "rss" + current_total_primary = current_total_rss + else: + self.memory_measurement = "rss" + current_total_primary = current_total_rss + + # Update memory metrics only if we got a valid reading. + if current_total_primary > 0: + self.memory_samples.append(current_total_primary) + self.peak_memory_bytes = max(self.peak_memory_bytes, current_total_primary) + + if current_total_rss > 0: + self.memory_samples_rss.append(current_total_rss) + self.peak_memory_bytes_rss = max(self.peak_memory_bytes_rss, current_total_rss) + + if uss_valid_for_all and current_total_uss > 0: + self.memory_samples_uss.append(current_total_uss) + self.peak_memory_bytes_uss = max(self.peak_memory_bytes_uss, current_total_uss) + + # Always record partial-USS (may undercount) and coverage. + if current_total_uss_partial > 0: + self.memory_samples_uss_partial.append(current_total_uss_partial) + self.peak_memory_bytes_uss_partial = max( + self.peak_memory_bytes_uss_partial, current_total_uss_partial + ) + + if process_count > 0: + self.uss_coverage_samples.append(uss_available_count / process_count) + self.process_count_samples.append(process_count) + self.uss_available_count_samples.append(uss_available_count) time.sleep(sampling_interval) @@ -146,6 +244,32 @@ def _monitor_process_tree(self, pid): print(f"Error in monitoring thread: {e}") traceback.print_exc() + def _get_process_memory_components(self, proc): + """Return (rss_bytes, uss_bytes_or_None, private_bytes_or_None).""" + try: + memory_info = proc.memory_info() + rss = getattr(memory_info, 'rss', 0) or 0 + + uss = None + private = None + + # Windows: private working set. + if self.is_windows: + private = getattr(memory_info, 'private', None) + return rss, uss, private + + # macOS/Linux: try USS if available. + try: + memory_full = proc.memory_full_info() + if hasattr(memory_full, 'uss'): + uss = getattr(memory_full, 'uss') + except Exception: + uss = None + + return rss, uss, private + except (psutil.NoSuchProcess, psutil.AccessDenied): + return 0, None, None + def _update_process_list(self): """Update the list of processes we're monitoring to include new children.""" processes_to_check = list(self.monitored_processes) @@ -183,6 +307,7 @@ def _get_process_memory(self, proc): try: if self.is_windows: # On Windows, use private working set for exclusive memory usage + self.memory_measurement = "private" return proc.memory_info().private elif self.is_macos: # On macOS, use rss - shared memory for better accuracy @@ -190,14 +315,22 @@ def _get_process_memory(self, proc): try: # Try to get more accurate measurement on macOS if available memory_full = proc.memory_full_info() - return getattr(memory_full, 'uss', memory_info.rss) + if hasattr(memory_full, 'uss'): + self.memory_measurement = "uss" + return getattr(memory_full, 'uss') + + self.memory_measurement = "rss" + return memory_info.rss except: + self.memory_measurement = "rss" return memory_info.rss else: # On Linux, USS (Unique Set Size) is most accurate try: + self.memory_measurement = "uss" return proc.memory_full_info().uss except: + self.memory_measurement = "rss" return proc.memory_info().rss except (psutil.NoSuchProcess, psutil.AccessDenied): return 0 @@ -263,7 +396,27 @@ def get_metrics(self): "peak_bytes": self.peak_memory_bytes, "peak_mb": self.peak_memory_bytes / (1024 * 1024), "avg_bytes": statistics.mean(self.memory_samples) if self.memory_samples else 0, - "avg_mb": statistics.mean(self.memory_samples) / (1024 * 1024) if self.memory_samples else 0 + "avg_mb": statistics.mean(self.memory_samples) / (1024 * 1024) if self.memory_samples else 0, + "measurement": self.memory_measurement, + # Additional series (may be empty if not measurable). + "rss_peak_bytes": self.peak_memory_bytes_rss, + "rss_peak_mb": self.peak_memory_bytes_rss / (1024 * 1024), + "rss_avg_bytes": statistics.mean(self.memory_samples_rss) if self.memory_samples_rss else 0, + "rss_avg_mb": statistics.mean(self.memory_samples_rss) / (1024 * 1024) if self.memory_samples_rss else 0, + "uss_peak_bytes": self.peak_memory_bytes_uss, + "uss_peak_mb": self.peak_memory_bytes_uss / (1024 * 1024), + "uss_avg_bytes": statistics.mean(self.memory_samples_uss) if self.memory_samples_uss else 0, + "uss_avg_mb": statistics.mean(self.memory_samples_uss) / (1024 * 1024) if self.memory_samples_uss else 0, + "uss_is_complete": bool(self.memory_samples_uss), + "uss_partial_peak_bytes": self.peak_memory_bytes_uss_partial, + "uss_partial_peak_mb": self.peak_memory_bytes_uss_partial / (1024 * 1024), + "uss_partial_avg_bytes": statistics.mean(self.memory_samples_uss_partial) if self.memory_samples_uss_partial else 0, + "uss_partial_avg_mb": statistics.mean(self.memory_samples_uss_partial) / (1024 * 1024) if self.memory_samples_uss_partial else 0, + "uss_coverage_avg": statistics.mean(self.uss_coverage_samples) if self.uss_coverage_samples else 0, + "uss_process_count_avg": statistics.mean(self.process_count_samples) if self.process_count_samples else 0, + "uss_process_count_max": max(self.process_count_samples) if self.process_count_samples else 0, + "uss_available_count_avg": statistics.mean(self.uss_available_count_samples) if self.uss_available_count_samples else 0, + "uss_available_count_max": max(self.uss_available_count_samples) if self.uss_available_count_samples else 0, }, "cpu": { "user_time": self.cpu_user_time, @@ -487,7 +640,23 @@ class GrimoireMetricsCollector(MetricsCollector): def __init__(self, output_dir="grimoire_css_output", executable="../target/release/grimoire_css"): """Initialize the Grimoire CSS metrics collector.""" super().__init__(output_dir) - self.executable = executable + # Allow overriding the binary path for profiling / custom builds. + # By default we run the release binary to keep benchmarks comparable. + # + # Priority order: + # 1) GRIMOIRE_CSS_EXECUTABLE: explicit path wins. + # 2) GRIMOIRE_CSS_USE_PROFILING=1: prefer ../target/profiling/grimoire_css if present. + # 3) Fallback to the default release binary. + overridden = os.environ.get("GRIMOIRE_CSS_EXECUTABLE") + use_profiling = os.environ.get("GRIMOIRE_CSS_USE_PROFILING") == "1" + + if overridden: + self.executable = overridden + elif use_profiling: + profiling_candidate = Path("../target/profiling/grimoire_css") + self.executable = str(profiling_candidate) if profiling_candidate.exists() else executable + else: + self.executable = executable def run_benchmark(self): """Run the Grimoire CSS benchmark and collect metrics.""" @@ -501,6 +670,11 @@ def run_benchmark(self): process, elapsed_time, process_metrics, stdout, stderr = self.run_process( cmd) + # dhat (heap profiling) drastically slows execution and changes allocation behavior. + # If it's enabled, the reported build time is not comparable to normal runs. + if stderr and "dhat:" in stderr: + print("Warning: dhat heap profiling detected in Grimoire process output. Build time is not comparable; disable heap profiling for performance benchmarks.") + # Step 3: Analyze output files output_metrics = self.output_analyzer.analyze() self.output_files_size = output_metrics["total_size_bytes"] @@ -514,6 +688,12 @@ def run_benchmark(self): process ) + # Add run metadata for reproducibility. + result["run"] = { + "executable": str(self.executable), + "argv": cmd, + } + return result except Exception as e: print(f"Error running Grimoire CSS benchmark: {e}") diff --git a/benchmark/core/report_generator.py b/benchmark/core/report_generator.py index 6cdfe6c..b3264df 100644 --- a/benchmark/core/report_generator.py +++ b/benchmark/core/report_generator.py @@ -89,6 +89,35 @@ def generate_report(results): f"Peak Memory: {metrics['process']['memory']['peak_mb']:.2f} MB") lines.append( f"Average Memory: {metrics['process']['memory']['avg_mb']:.2f} MB") + + mem = metrics.get('process', {}).get('memory', {}) + # If available, show both RSS and USS for better comparability. + if 'rss_peak_mb' in mem: + lines.append(f"Peak RSS: {mem.get('rss_peak_mb', 0.0):.2f} MB") + lines.append(f"Average RSS: {mem.get('rss_avg_mb', 0.0):.2f} MB") + + # USS may be unavailable for some processes on macOS; if so, report a partial total + coverage. + if mem.get('uss_is_complete') and 'uss_peak_mb' in mem: + lines.append(f"Peak USS: {mem.get('uss_peak_mb', 0.0):.2f} MB") + lines.append(f"Average USS: {mem.get('uss_avg_mb', 0.0):.2f} MB") + elif 'uss_coverage_avg' in mem: + coverage_pct = float(mem.get('uss_coverage_avg', 0.0)) * 100.0 + proc_avg = float(mem.get('uss_process_count_avg', 0.0)) + proc_max = int(mem.get('uss_process_count_max', 0) or 0) + uss_avg = float(mem.get('uss_available_count_avg', 0.0)) + uss_max = int(mem.get('uss_available_count_max', 0) or 0) + + if mem.get('uss_partial_peak_bytes', 0) and 'uss_partial_peak_mb' in mem: + lines.append(f"Peak USS (partial): {mem.get('uss_partial_peak_mb', 0.0):.2f} MB") + lines.append(f"Average USS (partial): {mem.get('uss_partial_avg_mb', 0.0):.2f} MB") + else: + lines.append("USS: unavailable for monitored process tree") + + lines.append( + f"USS Coverage (avg): {coverage_pct:.1f}% (avg {uss_avg:.1f}/{proc_avg:.1f} procs, max {uss_max}/{proc_max})" + ) + if mem.get('measurement'): + lines.append(f"Primary Memory Metric: {mem.get('measurement')}") if "memory_efficiency" in metrics["throughput"]: lines.append( f"Memory Efficiency: {metrics['throughput']['memory_efficiency']:.2f} classes/MB") diff --git a/benchmark/dhat-heap.json b/benchmark/dhat-heap.json new file mode 100644 index 0000000..83d3865 --- /dev/null +++ b/benchmark/dhat-heap.json @@ -0,0 +1,73288 @@ +{ +"dhatFileVersion": 2, +"mode": "rust-heap", +"verb": "Allocated", +"bklt": true, +"bkacc": false, +"tu": "µs", +"Mtu": "s", +"tuth": 10, +"cmd": "../target/profiling/grimoire_css build", +"pid": 22647, +"tg": 77497149, +"te": 77516677, +"pps": [ +{ +"tb": 32, +"tbk": 1, +"tl": 30, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1, +2, +3, +4, +5, +6, +7, +8, +9, +10, +11, +12, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 320, +"tbk": 1, +"tl": 551, +"mb": 320, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +27, +28, +29, +30, +31, +32, +33, +34, +35, +36, +34, +37, +34, +38, +39, +40, +41, +42, +43, +44, +45, +46, +26 +] +}, +{ +"tb": 440, +"tbk": 1, +"tl": 18, +"mb": 440, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +57, +58, +59, +60, +61, +62, +63, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 75583565, +"mb": 80, +"mbk": 1, +"gb": 80, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +65, +66, +67, +68, +69, +70, +71, +72, +73, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 30212, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +75, +76, +77, +78, +79, +80, +81, +82, +83, +84, +85, +86, +87, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 8064, +"tbk": 6, +"tl": 127, +"mb": 4096, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +93, +94, +95, +96, +97, +98, +99, +100, +101, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +103, +104 +] +}, +{ +"tb": 312, +"tbk": 1, +"tl": 23, +"mb": 312, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +57, +58, +59, +60, +61, +62, +63, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92 +] +}, +{ +"tb": 240, +"tbk": 3, +"tl": 0, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +105, +106, +107, +108, +109, +110, +111, +112, +113, +114, +115, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 20294, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +120, +121, +122, +123, +124, +125, +126, +127, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 656, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +133, +134, +135, +136, +137, +138, +139, +140, +141, +142, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 828, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +145, +146, +147, +148, +149, +150, +151, +152, +153, +154, +155, +156, +157, +158, +159, +160, +161, +162, +163, +164, +165, +166, +167, +168, +169, +170, +171, +172, +173, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 2, +"tl": 38, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +174, +175, +176, +177, +178, +179, +180, +181, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 128, +"tbk": 1, +"tl": 4714, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +182, +183, +184, +185, +186, +187, +188, +189, +190, +191, +192, +193, +194, +195, +196, +197, +198, +198, +199, +200, +201, +202 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 9, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +203, +204, +205, +206, +207, +110, +111, +112, +113, +114, +115, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 12801920, +"tbk": 200030, +"tl": 1752103, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +211, +212, +213, +214, +215, +216, +217, +218, +219, +220, +221, +222, +223, +224, +225, +226, +227, +24, +25, +26 +] +}, +{ +"tb": 3, +"tbk": 1, +"tl": 436, +"mb": 3, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +228, +229, +230, +231, +232, +233, +234, +235, +236, +237, +238, +239, +240, +241, +242, +243, +244, +245, +246, +247, +248, +249, +250, +251, +252, +253, +254, +26 +] +}, +{ +"tb": 644, +"tbk": 19, +"tl": 179, +"mb": 112, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +255, +256, +257, +258, +259, +260, +261, +262, +263, +264, +265, +266, +267, +268, +269, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 141, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +143, +144 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 75588628, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +278, +279, +280, +281, +282, +283, +284, +285, +286, +287, +288, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 28, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +289, +290, +291, +292, +293, +294, +295, +296, +297, +61, +62, +63, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 28, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +289, +290, +291, +292, +293, +294, +295, +296, +297, +61, +62, +63, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 2, +"tbk": 1, +"tl": 36, +"mb": 2, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +299, +300, +301, +302, +303, +304, +305, +306, +307, +308, +309, +310, +311, +312, +130, +131, +132, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 672, +"tbk": 3, +"tl": 0, +"mb": 384, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +313, +314, +315, +316, +317, +318, +319, +320, +321, +322, +323, +324, +325, +326, +327, +328, +13, +14, +15, +16, +17, +18, +74 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 953, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +332, +333, +334, +335, +336, +199, +200, +201, +202, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +116 +] +}, +{ +"tb": 87, +"tbk": 1, +"tl": 0, +"mb": 87, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +337, +338, +339, +340, +341, +342, +343, +344, +345, +346, +347, +348, +349, +350, +351, +352, +268, +269, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 18, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +359, +360, +361, +362, +363, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75571093, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +364, +365, +366, +367, +368, +369, +370, +371, +372, +373, +374, +375, +376, +377, +378, +379, +380, +381, +382, +383, +384, +385, +386, +387, +388, +389, +390, +391 +] +}, +{ +"tb": 27, +"tbk": 4, +"tl": 528, +"mb": 27, +"mbk": 4, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +392, +393, +394, +395, +396, +397, +398, +399, +9, +10, +11, +12, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 1, +"tbk": 1, +"tl": 438, +"mb": 1, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +400, +401, +402, +403, +404, +405, +406, +407, +408, +409, +410, +411, +412, +413, +414, +415, +268, +269, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 1152, +"tbk": 1, +"tl": 353, +"mb": 1152, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +416, +417, +418, +419, +420, +421, +422, +423, +424, +425, +426, +427, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 83, +"mb": 160, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +428, +429, +430, +431, +432, +433, +434, +435, +436, +437, +438, +439, +440, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 75600112, +"mb": 80, +"mbk": 1, +"gb": 80, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +65, +66, +67, +68, +69, +70, +71, +72, +73, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 72902867, +"mb": 72, +"mbk": 1, +"gb": 72, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +441, +442, +443, +444, +445, +446, +447, +448, +449, +450, +451, +452, +453, +454, +455, +456, +457, +458, +459, +460, +461, +462, +463, +464, +465, +223 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +474, +475, +476, +477, +478, +479, +13, +14, +15, +16, +17, +18, +19 +] +}, +{ +"tb": 560, +"tbk": 30, +"tl": 1121, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +481, +482, +483, +484, +485, +486, +487, +488, +489, +490, +491, +492, +493, +494, +495, +496, +497, +498, +499, +500, +501, +502, +503, +504, +505, +506, +507, +508, +509, +510, +511, +512, +513, +514, +515, +516, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 24, +"tbk": 2, +"tl": 75593896, +"mb": 16, +"mbk": 1, +"gb": 8, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +517, +518, +519, +520, +521, +522, +523, +524, +525, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 75579803, +"mb": 80, +"mbk": 1, +"gb": 80, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +528, +529, +530, +531, +532, +533, +534, +535, +536, +537, +130, +131, +132, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 192, +"tbk": 6, +"tl": 1151, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +541, +542, +543, +544, +545, +546, +547, +548, +549, +550, +551, +552, +553, +554, +555, +556, +198 +] +}, +{ +"tb": 576, +"tbk": 4, +"tl": 13680, +"mb": 576, +"mbk": 4, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +557, +558, +559, +560, +561, +562, +563, +564, +565, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 158, +"mb": 72, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +575, +547, +548, +556, +576, +577, +578, +579, +580, +581, +198, +199, +200, +201, +202, +128, +129, +130, +131, +132 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 9236, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +120, +121, +122, +123, +124, +125, +126, +127, +128, +129, +61, +62, +63, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 11, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +582, +583, +584, +585, +586, +130, +131, +132, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75571168, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +596, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +390, +391, +609, +610, +611, +612 +] +}, +{ +"tb": 120, +"tbk": 2, +"tl": 75589478, +"mb": 96, +"mbk": 1, +"gb": 24, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +613, +614, +615, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92 +] +}, +{ +"tb": 24, +"tbk": 3, +"tl": 2557, +"mb": 24, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +620, +621, +622, +623, +624, +625, +626, +627, +628, +629, +630, +631, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 29, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +632, +633, +634, +635, +636, +637, +638, +639, +640, +641, +642, +643, +644, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 75586947, +"mb": 160, +"mbk": 1, +"gb": 160, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +645, +646, +647, +648, +649, +650, +651, +652, +650, +653, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 2, +"tbk": 1, +"tl": 75580411, +"mb": 2, +"mbk": 1, +"gb": 2, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +654, +655, +656, +657, +658, +659, +660, +661, +662, +663, +664, +665, +666, +667, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 800, +"tbk": 2, +"tl": 0, +"mb": 640, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +668, +669, +670, +671, +672, +673, +674, +176, +177, +178, +179, +180, +181, +16, +17, +18, +143, +144, +90, +91, +92 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 891, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +678, +679, +680, +681, +682, +199, +200, +201, +202, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +103, +104 +] +}, +{ +"tb": 1792, +"tbk": 3, +"tl": 75571521, +"mb": 1024, +"mbk": 1, +"gb": 1024, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +683, +684, +685, +686, +687, +688, +689, +690, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +698, +391 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 3435, +"mb": 72, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +699, +700, +701, +702, +703, +704, +705, +706, +707, +708, +709, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 1152, +"tbk": 1, +"tl": 89, +"mb": 1152, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +416, +417, +418, +419, +420, +421, +422, +423, +424, +425, +426, +427, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 896, +"tbk": 1, +"tl": 182, +"mb": 896, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +710, +711, +712, +713, +714, +715, +716, +717, +718, +719, +720, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 41, +"tbk": 10, +"tl": 620, +"mb": 18, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +721, +722, +723, +724, +725, +726, +727, +728, +729, +730, +138, +139, +140, +141, +142, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 616, +"tbk": 3, +"tl": 22, +"mb": 352, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +255, +256, +257, +258, +259, +260, +261, +262, +263, +264, +265, +351, +352, +731, +732, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 11008, +"tbk": 6, +"tl": 75579623, +"mb": 4096, +"mbk": 1, +"gb": 3072, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +733, +734, +735, +736, +737, +738, +739, +740, +741, +742, +743, +744, +745, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 96, +"tbk": 3, +"tl": 64, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1, +2, +3, +4, +5, +6, +7, +8, +9, +10, +746, +747, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23 +] +}, +{ +"tb": 300, +"tbk": 1, +"tl": 75570025, +"mb": 300, +"mbk": 1, +"gb": 300, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +750, +751, +752, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +753, +391 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 2048, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +754, +755, +756, +757, +758, +759, +760, +761, +762, +763, +764, +765, +766, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 460, +"tbk": 1, +"tl": 136, +"mb": 460, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +767, +768, +769, +770, +771, +772, +773, +61, +62, +63, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 379, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +774, +775, +576, +577, +578, +579, +580, +581, +198, +776, +777, +778, +576, +577, +578, +579, +580, +581, +198 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 60935, +"mb": 160, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +779, +780, +781, +782, +783, +784, +762, +763, +764, +765, +766, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 1228, +"tbk": 1, +"tl": 33, +"mb": 1228, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +57, +58, +59, +60, +61, +62, +63, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 75599660, +"mb": 16, +"mbk": 1, +"gb": 16, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +528, +529, +530, +531, +532, +533, +534, +535, +536, +537, +61, +62, +63, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 19200, +"tbk": 40, +"tl": 115, +"mb": 1024, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +791, +792, +793, +794, +795, +796, +797, +351, +352, +503, +504, +505, +506, +507, +508, +509, +510, +511, +512, +513, +514, +515, +516, +270, +271, +272, +24, +25 +] +}, +{ +"tb": 26, +"tbk": 1, +"tl": 77515139, +"mb": 26, +"mbk": 1, +"gb": 26, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +798, +799, +800, +801, +802, +803, +804, +805, +806, +807, +808, +809, +810, +811, +812, +813, +814, +815, +816, +817, +818, +819, +820, +821, +822, +823, +26 +] +}, +{ +"tb": 224, +"tbk": 6, +"tl": 442, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +824, +825, +826, +827, +556, +828, +829, +830, +831, +832, +833, +834, +835, +836, +837, +838, +554, +555, +839, +840, +841, +842, +843, +844 +] +}, +{ +"tb": 40, +"tbk": 2, +"tl": 75585704, +"mb": 32, +"mbk": 1, +"gb": 8, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +845, +846, +847, +848, +849, +850, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23 +] +}, +{ +"tb": 240, +"tbk": 2, +"tl": 75581905, +"mb": 192, +"mbk": 1, +"gb": 48, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +851, +852, +853, +854, +855, +856, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 1558, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +857, +858, +859, +860, +762, +763, +764, +765, +766, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 4794, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +861, +862, +863, +864, +865, +866, +867, +868, +556, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 568, +"tbk": 2, +"tl": 151184195, +"mb": 568, +"mbk": 2, +"gb": 568, +"gbk": 2, +"eb": 0, +"ebk": 0, +"fs": [ +869, +870, +871, +872, +873, +874, +875, +876, +877, +878, +61, +62, +63, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 400, +"tbk": 1, +"tl": 75576656, +"mb": 400, +"mbk": 1, +"gb": 400, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +879, +880, +881, +882, +883, +884, +61, +62, +63, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 77514291, +"mb": 8, +"mbk": 1, +"gb": 8, +"gbk": 1, +"eb": 8, +"ebk": 1, +"fs": [ +885, +886, +887, +888, +889, +890, +891, +892, +893, +894, +895, +896, +897, +898, +899, +900, +901, +902, +903, +904, +905, +906, +907, +908, +909, +910, +911, +912, +913, +914, +915, +916, +917, +918, +919, +920, +921, +922, +923, +924, +925, +926, +927, +928, +929, +930, +931 +] +}, +{ +"tb": 240, +"tbk": 3, +"tl": 8433, +"mb": 240, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +932, +933, +934, +935, +936, +937, +762, +763, +764, +765, +766, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 316, +"tbk": 1, +"tl": 75570279, +"mb": 316, +"mbk": 1, +"gb": 316, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +938, +939, +940, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +941, +391 +] +}, +{ +"tb": 1152, +"tbk": 1, +"tl": 117, +"mb": 1152, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +416, +417, +418, +419, +420, +421, +422, +423, +424, +425, +426, +427, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 76, +"tbk": 1, +"tl": 75570576, +"mb": 76, +"mbk": 1, +"gb": 76, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +750, +751, +752, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +942, +391 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 54, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +946, +947, +948, +949, +950, +951, +952, +953, +954, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 88, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +955, +956, +957, +958, +959, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23 +] +}, +{ +"tb": 83, +"tbk": 1, +"tl": 38, +"mb": 83, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +960, +961, +962, +963, +964, +965, +966, +967, +61, +62, +63, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 112, +"tbk": 2, +"tl": 15879, +"mb": 112, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +968, +969, +970, +971, +972, +973, +974, +975, +976, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 3, +"tbk": 3, +"tl": 81, +"mb": 1, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +977, +978, +979, +980, +981, +982, +983, +984, +985, +748, +749, +746, +747, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 18, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +986, +987, +988, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 128, +"tbk": 1, +"tl": 56, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +989, +990, +991, +992, +993, +994, +995, +996, +997, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 80, +"tbk": 2, +"tl": 75594336, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +998, +999, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 8064, +"tbk": 6, +"tl": 223, +"mb": 4096, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +93, +94, +95, +96, +97, +98, +99, +100, +101, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +64 +] +}, +{ +"tb": 32, +"tbk": 2, +"tl": 420, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +828, +829, +830, +831, +832, +833, +834, +835, +836, +837, +838, +554, +555, +839, +840, +841, +842, +843, +844, +199, +200, +201, +202 +] +}, +{ +"tb": 96, +"tbk": 6, +"tl": 26, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1000, +1001, +1002, +1003, +1004, +556, +828, +829, +830, +831, +832, +833, +549, +550, +551, +552, +553, +554, +555, +839, +840, +841, +842, +843, +844, +199, +200, +201, +202, +128, +129 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 146, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +774, +775, +198, +199, +200, +201, +202, +128, +129, +130, +131, +132, +13, +14, +15 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 77514955, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +1005, +1006, +1007, +1008, +1009, +1010, +1011, +1012, +1013, +1014, +1015, +1016, +1017, +1018, +1019, +1020, +1021, +1022, +1023, +1024, +1025, +1026, +1027, +1028, +1029 +] +}, +{ +"tb": 11, +"tbk": 1, +"tl": 75578117, +"mb": 11, +"mbk": 1, +"gb": 11, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +654, +655, +656, +657, +658, +659, +660, +661, +662, +663, +664, +665, +666, +667, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 23, +"tbk": 1, +"tl": 28, +"mb": 23, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +977, +978, +979, +980, +981, +982, +983, +984, +985, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 12, +"tbk": 4, +"tl": 123, +"mb": 9, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +721, +722, +723, +724, +725, +726, +727, +728, +729, +730, +138, +139, +140, +141, +142, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 4, +"tbk": 1, +"tl": 75576751, +"mb": 4, +"mbk": 1, +"gb": 4, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1030, +1031, +1032, +1033, +1034, +1035, +1036, +1037, +1038, +1039, +1040, +61, +62, +63, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 184320, +"tbk": 8, +"tl": 75593896, +"mb": 65536, +"mbk": 1, +"gb": 54272, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +733, +734, +735, +736, +737, +738, +739, +740, +741, +742, +743, +744, +745, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 2, +"tbk": 1, +"tl": 37, +"mb": 2, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +299, +300, +301, +302, +303, +304, +305, +306, +307, +308, +309, +310, +311, +312, +130, +131, +132, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 1819, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +1041, +1042, +1043, +1044, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 248, +"tbk": 5, +"tl": 296, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +481, +482, +483, +484, +485, +486, +487, +488, +489, +490, +491, +492, +493, +494, +495, +496, +497, +498, +499, +500, +501, +502, +731, +732, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 896, +"tbk": 3, +"tl": 146, +"mb": 512, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +93, +94, +95, +96, +97, +98, +99, +100, +101, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +143, +144 +] +}, +{ +"tb": 120, +"tbk": 1, +"tl": 2745, +"mb": 120, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1045, +1046, +1047, +1048, +716, +717, +718, +719, +720, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1049, +1050, +1051, +1052, +1053, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23 +] +}, +{ +"tb": 40, +"tbk": 1, +"tl": 75579428, +"mb": 40, +"mbk": 1, +"gb": 40, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +869, +870, +871, +872, +873, +874, +875, +876, +877, +878, +61, +62, +63, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 3968, +"tbk": 5, +"tl": 525, +"mb": 2048, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +93, +94, +95, +96, +97, +98, +99, +100, +101, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +208, +209, +210 +] +}, +{ +"tb": 1, +"tbk": 1, +"tl": 29, +"mb": 1, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +977, +978, +979, +980, +981, +982, +983, +984, +985, +1054, +1055, +642, +643, +644, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 240, +"tbk": 3, +"tl": 226756958, +"mb": 240, +"mbk": 3, +"gb": 240, +"gbk": 3, +"eb": 0, +"ebk": 0, +"fs": [ +528, +529, +530, +531, +532, +533, +534, +535, +536, +537, +130, +131, +132, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 240, +"tbk": 2, +"tl": 75599911, +"mb": 192, +"mbk": 1, +"gb": 48, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +851, +852, +853, +854, +855, +856, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 2547, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1056, +1057, +1058, +1059, +1060, +761, +762, +763, +764, +765, +766, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 27, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +289, +290, +291, +292, +293, +294, +295, +296, +297, +61, +62, +63, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 112, +"tbk": 8, +"tl": 518, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1061, +1062, +1063, +1064, +549, +550, +551, +552, +553, +554, +555, +556, +198, +576, +577, +578, +579, +580, +581, +198, +199, +200, +201, +202, +128, +129 +] +}, +{ +"tb": 3, +"tbk": 1, +"tl": 455, +"mb": 3, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +228, +229, +230, +231, +232, +233, +234, +235, +236, +237, +238, +239, +240, +241, +242, +243, +244, +1065, +1066, +1067, +1068, +1069, +1070, +1071, +1072, +250, +251, +252, +253, +254, +26 +] +}, +{ +"tb": 45, +"tbk": 1, +"tl": 75588640, +"mb": 45, +"mbk": 1, +"gb": 45, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1073, +1074, +1075, +1076, +1077, +1078, +1079, +1080, +1081, +1082, +1083, +1084, +1085, +1086, +1087, +24, +25, +26 +] +}, +{ +"tb": 108, +"tbk": 1, +"tl": 72902816, +"mb": 108, +"mbk": 1, +"gb": 108, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1088, +1089, +1090, +1091, +1092, +1093, +1094, +1095, +1096, +1097, +1098, +1099, +1100, +1101, +1102, +448, +449, +450, +451, +452, +453, +454, +455, +456, +457, +458, +459, +460, +461, +462, +463, +464, +465, +223 +] +}, +{ +"tb": 400, +"tbk": 1, +"tl": 75585590, +"mb": 400, +"mbk": 1, +"gb": 400, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +879, +880, +881, +882, +883, +884, +130, +131, +132, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 144, +"tbk": 1, +"tl": 59, +"mb": 144, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +1103, +1104, +1105, +1106, +1107, +1108, +1109, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 644, +"tbk": 3, +"tl": 21, +"mb": 368, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +255, +256, +257, +258, +259, +260, +261, +262, +263, +264, +265, +351, +352, +268, +269, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 34, +"tbk": 1, +"tl": 75572782, +"mb": 34, +"mbk": 1, +"gb": 34, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +654, +655, +656, +657, +658, +659, +660, +661, +662, +663, +664, +665, +666, +667, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 128, +"tbk": 1, +"tl": 136, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +989, +990, +991, +992, +993, +994, +995, +996, +997, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1110, +1111, +1112, +1113, +1114, +1115, +1116, +1117, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 40, +"tbk": 1, +"tl": 75584971, +"mb": 40, +"mbk": 1, +"gb": 40, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1118, +1119, +1120, +1121, +1122, +1123, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 1437, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +932, +933, +934, +935, +936, +937, +762, +763, +764, +765, +766, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 77515085, +"mb": 48, +"mbk": 1, +"gb": 48, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1124, +1125, +1126, +1127, +1128, +1129, +1130, +1131, +1132, +1133, +1134, +1135, +1136, +26 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 150, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +861, +862, +863, +864, +865, +866, +867, +868, +556, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 3308, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +1137, +1138, +1139, +1140, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 28, +"tbk": 1, +"tl": 77515129, +"mb": 28, +"mbk": 1, +"gb": 28, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1141, +1142, +1143, +1144, +1145, +1146, +1147, +1148, +1149, +1150, +1151, +1152, +1153, +1154, +1155, +1156, +1157, +1158, +1159, +1160, +1161, +1162, +1163, +1164, +1165, +1166, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 37, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1167, +1168, +1169, +1170, +1171, +1172, +1114, +1115, +1116, +1117, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 597, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +298 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 37, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +960, +961, +962, +963, +964, +965, +966, +967, +130, +131, +132, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 1966, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1173, +1174, +1175, +1176, +1177, +1178, +762, +763, +764, +765, +766, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 4320, +"tbk": 6, +"tl": 75572170, +"mb": 1536, +"mbk": 1, +"gb": 1344, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1179, +1180, +1181, +1182, +1183, +1184, +1185, +1186, +130, +131, +132, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25 +] +}, +{ +"tb": 216, +"tbk": 1, +"tl": 793, +"mb": 216, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1187, +1188, +1189, +1190, +1191, +1192, +1193, +1194, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 3, +"tbk": 1, +"tl": 518, +"mb": 3, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +228, +229, +230, +231, +232, +233, +234, +235, +236, +237, +238, +239, +240, +241, +242, +243, +244, +245, +246, +247, +248, +249, +1195, +1196, +26 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +474, +475, +476, +477, +478, +479, +13, +14, +15, +16, +17, +18, +74 +] +}, +{ +"tb": 80, +"tbk": 2, +"tl": 75612680, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +998, +999, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 75571834, +"mb": 16, +"mbk": 1, +"gb": 16, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1197, +1198, +1199, +1200, +1201, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 1624, +"mb": 72, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +699, +700, +701, +702, +1202, +561, +562, +563, +564, +565, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 86400000, +"tbk": 100000, +"tl": 11071011211, +"mb": 8640000, +"mbk": 10000, +"gb": 8640000, +"gbk": 10000, +"eb": 0, +"ebk": 0, +"fs": [ +47, +1203, +1204, +1205, +1206, +1207, +1208, +1209, +1210, +1211, +1212, +1213, +1214, +1215, +1216, +1217 +] +}, +{ +"tb": 108, +"tbk": 1, +"tl": 160, +"mb": 108, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1088, +1089, +1090, +1091, +1092, +1093, +1094, +1095, +1096, +1097, +1098, +1099, +1100, +1101, +1102, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +390, +391 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 1836, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +575, +547, +548, +556, +198, +576, +577, +578, +579, +580, +581, +549, +550, +551, +552, +553, +554, +555, +198 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 75594326, +"mb": 96, +"mbk": 1, +"gb": 96, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1218, +1219, +1220, +1221, +1222, +1223, +1224, +130, +131, +132, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 40, +"tbk": 2, +"tl": 75572244, +"mb": 32, +"mbk": 1, +"gb": 8, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +845, +846, +847, +848, +849, +850, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25 +] +}, +{ +"tb": 432, +"tbk": 2, +"tl": 5091, +"mb": 432, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1187, +1188, +1189, +1190, +1191, +1192, +1193, +1194, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 512, +"tbk": 1, +"tl": 75591576, +"mb": 512, +"mbk": 1, +"gb": 512, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1225, +1226, +1227, +1228, +1229, +1230, +1231, +1232, +1233, +1234, +1235, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 144, +"tbk": 1, +"tl": 68, +"mb": 144, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +1103, +1104, +1105, +1106, +1107, +1108, +1109, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 75578340, +"mb": 80, +"mbk": 1, +"gb": 80, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +65, +66, +67, +68, +69, +70, +71, +72, +73, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 128, +"tbk": 1, +"tl": 1719, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1236, +1237, +1238, +1239, +1240, +1241, +1242, +1243, +1244, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 2, +"tl": 400, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +1245, +1246, +554, +555, +839, +840, +841, +842, +843, +844, +199, +200, +201, +202, +128, +129 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 156, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1247, +1248, +1249, +1250, +1251, +1252, +1253, +1254, +191, +198, +199, +200, +201, +202, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +143, +144 +] +}, +{ +"tb": 440, +"tbk": 1, +"tl": 27, +"mb": 440, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +57, +58, +59, +60, +61, +62, +63, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 67, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +289, +290, +291, +292, +293, +294, +295, +296, +297, +130, +131, +132, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 3902, +"mb": 160, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1255, +1256, +1257, +1258, +937, +762, +763, +764, +765, +766, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 1504, +"tbk": 61, +"tl": 595, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +255, +256, +257, +258, +259, +260, +261, +262, +263, +264, +265, +266, +267, +503, +504, +505, +506, +507, +508, +509, +510, +511, +512, +513, +514, +515, +516, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 128, +"tbk": 1, +"tl": 30723, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1236, +1237, +1238, +1239, +1240, +1241, +1242, +1243, +1244, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 75584996, +"mb": 16, +"mbk": 1, +"gb": 16, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1197, +1198, +1199, +1200, +1201, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 304, +"tbk": 1, +"tl": 92, +"mb": 304, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +767, +768, +769, +770, +771, +772, +773, +61, +62, +63, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 2000, +"tbk": 1, +"tl": 75588772, +"mb": 2000, +"mbk": 1, +"gb": 2000, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1259, +1260, +1261, +1262, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 240, +"tbk": 3, +"tl": 0, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1263, +1264, +1265, +1266, +1267, +761, +762, +763, +764, +765, +766, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 1448, +"tbk": 1, +"tl": 75600425, +"mb": 1448, +"mbk": 1, +"gb": 1448, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1268, +1269, +1270, +1271, +1272, +1273, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 252, +"tbk": 1, +"tl": 88, +"mb": 252, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +428, +429, +430, +431, +432, +433, +434, +435, +436, +437, +438, +439, +440, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75569933, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1274, +1275, +1276, +1277, +1278, +1279, +1280, +1281, +1282, +1283, +1284, +1285, +1286, +1287, +1288, +1289, +377, +378, +379, +380, +381, +382, +383, +384, +385, +386, +387, +388, +389, +753, +391 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 20, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1290, +1291, +1292, +1293, +1294, +176, +177, +178, +179, +180, +181, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 3, +"tl": 108, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1167, +1168, +1169, +1170, +746, +747, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 8592, +"tbk": 7, +"tl": 75581278, +"mb": 3072, +"mbk": 1, +"gb": 2544, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1179, +1180, +1181, +1182, +1183, +1184, +1185, +1186, +61, +62, +63, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 64, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +289, +290, +291, +292, +293, +294, +295, +296, +297, +130, +131, +132, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 30248, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1255, +1256, +1257, +1258, +937, +762, +763, +764, +765, +766, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 2, +"tbk": 1, +"tl": 37, +"mb": 2, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +299, +300, +301, +302, +303, +304, +305, +306, +307, +308, +309, +310, +311, +312, +61, +62, +63, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 240, +"tbk": 3, +"tl": 8863, +"mb": 240, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +779, +780, +781, +782, +783, +784, +762, +763, +764, +765, +766, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 1316, +"tbk": 1, +"tl": 29, +"mb": 1316, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1295, +1296, +1297, +1298, +1299, +1300, +1301, +1302, +1303, +1304, +1305, +1306, +1307, +1308, +1309, +1310, +1311, +1312, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 3, +"tbk": 3, +"tl": 312, +"mb": 3, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +392, +393, +394, +395, +396, +397, +398, +399, +9, +10, +746, +747, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23 +] +}, +{ +"tb": 108, +"tbk": 1, +"tl": 208, +"mb": 108, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1088, +1089, +1090, +1091, +1092, +1093, +1094, +1095, +1096, +1097, +1098, +1099, +1100, +1101, +1102, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +390, +391 +] +}, +{ +"tb": 14548770, +"tbk": 160, +"tl": 25792670, +"mb": 786432, +"mbk": 1, +"gb": 786432, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +1313, +1314, +1315, +1316, +1317, +1318, +1319, +1320, +1321, +1322, +224, +225, +226, +227, +24, +25, +26 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 0, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1263, +1264, +1265, +1266, +1323, +1324, +1325, +1326, +1327, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 944, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +678, +679, +680, +681, +682, +199, +200, +201, +202, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +116 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 337, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +861, +862, +863, +864, +865, +866, +867, +868, +556, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 400, +"tbk": 1, +"tl": 75581268, +"mb": 400, +"mbk": 1, +"gb": 400, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +879, +880, +881, +882, +883, +884, +61, +62, +63, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 1398020, +"tbk": 200030, +"tl": 3479530, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1328, +1329, +1330, +1331, +1332, +1333, +1334, +1335, +1336, +1337, +1338, +223, +224, +225, +226, +227, +24, +25, +26 +] +}, +{ +"tb": 3, +"tbk": 2, +"tl": 2800, +"mb": 3, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1339, +1340, +1341, +1342, +1343, +1344, +1345, +1346, +1347, +937, +762, +763, +764, +765, +766, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 2653, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +145, +146, +147, +148, +149, +150, +151, +152, +153, +154, +155, +156, +157, +158, +159, +160, +161, +162, +163, +164, +165, +166, +167, +168, +169, +170, +171, +172, +173, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 672, +"tbk": 12, +"tl": 43632, +"mb": 672, +"mbk": 12, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1348, +1349, +1350, +1351, +1352, +1353, +1354, +1355, +1356, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 53, +"tbk": 1, +"tl": 38, +"mb": 53, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +960, +961, +962, +963, +964, +965, +966, +967, +130, +131, +132, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 75571614, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +1357, +1358, +1359, +1360, +1361, +1362, +1363, +1364, +1365, +1366, +1367, +1368, +1369, +457, +458, +604, +605, +606, +607, +608, +698, +391, +609, +610, +611, +612, +24, +25 +] +}, +{ +"tb": 24, +"tbk": 2, +"tl": 75579623, +"mb": 16, +"mbk": 1, +"gb": 8, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +517, +518, +519, +520, +521, +522, +523, +524, +525, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 9, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +582, +583, +584, +585, +586, +61, +62, +63, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 375, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1370, +1371, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23 +] +}, +{ +"tb": 85, +"tbk": 1, +"tl": 546, +"mb": 85, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1372, +1373, +1374, +1375, +1376, +1377, +1378, +1379, +1380, +1381, +1382, +1383, +1384, +1385, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 1022, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1386, +1387, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23 +] +}, +{ +"tb": 1152, +"tbk": 1, +"tl": 216, +"mb": 1152, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +416, +417, +418, +419, +420, +421, +422, +423, +424, +425, +426, +427, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 1104, +"tbk": 2, +"tl": 291, +"mb": 736, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1388, +1389, +1390, +1391, +1392, +1393, +1394, +1395, +1396, +1397, +1398, +250, +251, +252, +253, +254, +26 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +596, +448, +1399, +1400, +1401, +1402, +1403, +1404, +1405, +1406, +457, +458, +459, +460, +461, +462, +463, +464, +465 +] +}, +{ +"tb": 183, +"tbk": 2, +"tl": 1876752, +"mb": 122, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +1419, +1420, +1421, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 220, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +779, +780, +781, +1422, +1423, +1424, +1425, +1426, +1427, +1428, +1429, +1430, +1431, +1432, +1433, +1434, +1435, +1436, +1437, +1438, +1439, +1440, +1441, +1442, +1443, +1444, +1445, +1446, +1447, +1448, +1449, +1450, +1451, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 34, +"tbk": 1, +"tl": 28, +"mb": 34, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +977, +978, +979, +980, +981, +982, +983, +984, +985, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 167, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +208, +209, +210 +] +}, +{ +"tb": 1136, +"tbk": 2, +"tl": 15348, +"mb": 1136, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1452, +1453, +1454, +1455, +1456, +1457, +1458, +1459, +1460, +1461, +1462, +1463, +1464, +1465, +1466, +138, +139, +140, +141, +142, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 2, +"tl": 75589479, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +998, +999, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 11, +"tbk": 1, +"tl": 29, +"mb": 11, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +977, +978, +979, +980, +981, +982, +983, +984, +985, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 56, +"tbk": 1, +"tl": 77515112, +"mb": 56, +"mbk": 1, +"gb": 56, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1467, +1468, +1469, +1470, +1471, +1472, +1473, +1474, +1475, +1476, +1477, +1478, +1479, +1480, +1481, +26 +] +}, +{ +"tb": 240, +"tbk": 2, +"tl": 75589478, +"mb": 192, +"mbk": 1, +"gb": 48, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +851, +852, +853, +854, +855, +856, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92 +] +}, +{ +"tb": 296, +"tbk": 1, +"tl": 27, +"mb": 296, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +57, +58, +59, +60, +61, +62, +63, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +474, +475, +1482, +1483, +1484, +1485, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 120, +"tbk": 2, +"tl": 75594335, +"mb": 96, +"mbk": 1, +"gb": 24, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +613, +614, +615, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 512, +"tbk": 1, +"tl": 75581175, +"mb": 512, +"mbk": 1, +"gb": 512, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1225, +1226, +1227, +1228, +1229, +1230, +1231, +1232, +1233, +1234, +1235, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 970, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +116 +] +}, +{ +"tb": 3968, +"tbk": 5, +"tl": 373, +"mb": 2048, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +93, +94, +95, +96, +97, +98, +99, +100, +101, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +19 +] +}, +{ +"tb": 2, +"tbk": 1, +"tl": 28, +"mb": 2, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +977, +978, +979, +980, +981, +982, +983, +984, +985, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 16680, +"tbk": 6, +"tl": 90, +"mb": 12688, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1486, +1487, +1488, +1489, +1490, +1491, +1492, +1493, +1494, +1495, +1496, +1497, +1498, +1499, +1500, +1501, +1502, +1503, +1504, +1505, +1506, +1507, +1508, +1509, +1510, +1511, +1512, +1513, +1514 +] +}, +{ +"tb": 336, +"tbk": 7, +"tl": 0, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1515, +1516, +1517, +1518, +1519, +176, +177, +178, +179, +180, +181, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75630559, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1520, +1521, +1522, +1523, +1524, +1525, +1526, +1527, +1528, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 0, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +105, +106, +107, +108, +109, +110, +111, +112, +113, +114, +115, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 1352, +"tbk": 1, +"tl": 130, +"mb": 1352, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +1103, +1104, +1105, +1106, +1107, +1108, +1109, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 166, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +678, +679, +680, +681, +682, +199, +200, +201, +202, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +143, +144 +] +}, +{ +"tb": 1, +"tbk": 1, +"tl": 19, +"mb": 1, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +392, +393, +394, +395, +396, +397, +398, +399, +9, +10, +1171, +1172, +1114, +1115, +1116, +1117, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 2400, +"mb": 72, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1529, +1530, +1531, +1532, +1533, +561, +562, +563, +564, +565, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 240, +"tbk": 2, +"tl": 75585704, +"mb": 192, +"mbk": 1, +"gb": 48, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +851, +852, +853, +854, +855, +856, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 20284, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +332, +333, +334, +335, +336, +199, +200, +201, +202, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +88, +89 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1110, +1111, +1112, +1113, +1054, +1055, +642, +643, +644, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 75571569, +"mb": 72, +"mbk": 1, +"gb": 72, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +441, +442, +443, +444, +445, +446, +447, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +698, +391 +] +}, +{ +"tb": 7, +"tbk": 1, +"tl": 118, +"mb": 7, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +392, +393, +394, +395, +396, +397, +398, +399, +9, +10, +11, +12, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 4463, +"mb": 160, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +133, +134, +135, +136, +137, +138, +139, +140, +141, +142, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 1352, +"tbk": 1, +"tl": 72902877, +"mb": 1352, +"mbk": 1, +"gb": 1352, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +750, +751, +752, +449, +450, +451, +452, +453, +454, +455, +456, +457, +458, +459, +460, +461, +462, +463, +464, +465, +223 +] +}, +{ +"tb": 41, +"tbk": 1, +"tl": 3831, +"mb": 41, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +145, +146, +147, +148, +149, +150, +151, +152, +153, +154, +155, +156, +157, +158, +159, +160, +161, +162, +163, +164, +165, +166, +167, +168, +169, +170, +171, +172, +173, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 896, +"tbk": 1, +"tl": 309, +"mb": 896, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +710, +711, +712, +713, +714, +715, +716, +717, +718, +719, +720, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 2, +"tbk": 1, +"tl": 76, +"mb": 2, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +392, +393, +394, +395, +396, +397, +398, +399, +9, +10, +11, +12, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 3840, +"tbk": 6, +"tl": 75574438, +"mb": 1536, +"mbk": 1, +"gb": 864, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1179, +1180, +1181, +1182, +1183, +1184, +1185, +1186, +130, +131, +132, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23 +] +}, +{ +"tb": 1568, +"tbk": 3, +"tl": 194, +"mb": 896, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +791, +1534, +1535, +1536, +1537, +1538, +1539, +1540, +731, +732, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 30307, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +932, +933, +934, +935, +1541, +937, +762, +763, +764, +765, +766, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 72902726, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1542, +1543, +1544, +1545, +1546, +1547, +1548, +448, +1399, +1400, +1401, +1402, +1403, +1404, +1405, +1406, +457, +458, +459, +460, +461, +462, +463, +464, +465, +223 +] +}, +{ +"tb": 240, +"tbk": 3, +"tl": 0, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1263, +1264, +1265, +1266, +1323, +937, +762, +763, +764, +765, +766, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 75598916, +"mb": 80, +"mbk": 1, +"gb": 80, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +65, +66, +67, +68, +69, +70, +71, +72, +73, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 4, +"tbk": 1, +"tl": 75574086, +"mb": 4, +"mbk": 1, +"gb": 4, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1030, +1031, +1032, +1033, +1034, +1035, +1036, +1037, +1038, +1039, +1040, +61, +62, +63, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 28, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1, +2, +3, +4, +5, +6, +7, +8, +9, +10, +11, +12, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 864, +"tbk": 2, +"tl": 485, +"mb": 576, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +1549, +1550, +1551, +1552, +1553, +1554, +1555, +1556, +1557, +1558, +1559, +1560, +26 +] +}, +{ +"tb": 20, +"tbk": 1, +"tl": 19, +"mb": 20, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +57, +58, +59, +60, +61, +62, +63, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92 +] +}, +{ +"tb": 96, +"tbk": 3, +"tl": 186, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +541, +542, +543, +544, +545, +546, +547, +548, +556, +576, +577, +578, +579, +580, +581, +198, +199, +200, +201, +202 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 164, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +1561, +1562, +1563, +1564, +1436, +1437, +1438, +1439, +1440, +1441, +1442, +1443, +1444, +1445, +1446, +1447, +1448, +1449, +1450, +1451, +13, +14, +15, +16, +17, +18, +526, +527 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 2389, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1565, +1566, +1567, +561, +562, +563, +564, +565, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 2, +"tl": 305, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +828, +829, +830, +831, +832, +833, +1568, +1569, +1570, +1571, +1572, +554, +555, +839, +840, +841, +842, +843, +844, +199, +200, +201, +202 +] +}, +{ +"tb": 270, +"tbk": 4, +"tl": 184, +"mb": 90, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +1573, +1574, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576, +1577, +1578, +1579, +1580, +1581, +1582 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1583, +1584, +1585, +1586, +1587, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 4484, +"mb": 160, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +779, +780, +781, +782, +783, +784, +762, +763, +764, +765, +766, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 75578324, +"mb": 80, +"mbk": 1, +"gb": 80, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1588, +1589, +1590, +1591, +1592, +1593, +1594, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32640, +"tbk": 8, +"tl": 410, +"mb": 16384, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +93, +94, +95, +96, +97, +98, +99, +100, +101, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +526, +527 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 9, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +582, +583, +584, +585, +586, +130, +131, +132, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 1296, +"tbk": 24, +"tl": 1814260593, +"mb": 1296, +"mbk": 24, +"gb": 1296, +"gbk": 24, +"eb": 0, +"ebk": 0, +"fs": [ +528, +529, +530, +531, +532, +533, +534, +535, +536, +537, +130, +131, +132, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 910, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +120, +121, +122, +123, +124, +125, +126, +127, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92 +] +}, +{ +"tb": 1056, +"tbk": 33, +"tl": 6708, +"mb": 288, +"mbk": 9, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +541, +542, +543, +544, +545, +1595, +1596, +1597, +556, +576, +577, +578, +579, +580, +581, +198, +198 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 135, +"mb": 160, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +932, +933, +934, +935, +1598, +1599, +762, +763, +764, +765, +766, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 400, +"tbk": 1, +"tl": 75610127, +"mb": 400, +"mbk": 1, +"gb": 400, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +879, +880, +881, +882, +883, +884, +130, +131, +132, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 0, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +105, +106, +107, +108, +109, +110, +111, +112, +113, +114, +115, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 2378, +"mb": 72, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +699, +700, +701, +702, +1600, +1601, +1602, +1603, +1604, +1605, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 1, +"tbk": 1, +"tl": 201, +"mb": 1, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1339, +1340, +1341, +1342, +1343, +1344, +1345, +1346, +1347, +1564, +1436, +1437, +1438, +1439, +1440, +1441, +1442, +1443, +1444, +1445, +1446, +1447, +1448, +1449, +1450, +1451, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 9296, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1370, +1371, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 132, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +120, +121, +122, +123, +124, +125, +126, +127, +128, +129, +61, +62, +63, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 1351, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1255, +1256, +1257, +1258, +937, +762, +763, +764, +765, +766, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 111, +"tbk": 1, +"tl": 39, +"mb": 111, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +960, +961, +962, +963, +964, +965, +966, +967, +61, +62, +63, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 59, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +1606, +1607, +1608, +1609, +61, +62, +63, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 75573909, +"mb": 16, +"mbk": 1, +"gb": 16, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1197, +1198, +1199, +1200, +1201, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 4, +"tbk": 1, +"tl": 75579880, +"mb": 4, +"mbk": 1, +"gb": 4, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1030, +1031, +1032, +1033, +1034, +1035, +1036, +1037, +1038, +1039, +1040, +130, +131, +132, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 10, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +582, +583, +584, +585, +586, +130, +131, +132, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 10, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +582, +583, +584, +585, +586, +130, +131, +132, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 224, +"tbk": 6, +"tl": 536, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +824, +825, +826, +827, +556, +828, +829, +830, +831, +832, +833, +549, +550, +551, +552, +553, +554, +555, +839, +840, +841, +842, +843, +844 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 28, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1610, +1611, +1612, +1613, +1614, +1615, +61, +62, +63, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 320, +"tbk": 4, +"tl": 208, +"mb": 160, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +932, +933, +934, +935, +1598, +1599, +762, +763, +764, +765, +766, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 216, +"tbk": 1, +"tl": 1670, +"mb": 216, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1187, +1188, +1189, +1190, +1191, +1192, +1193, +1194, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75578331, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1520, +1521, +1522, +1523, +1524, +1525, +1526, +1527, +1528, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 274, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +1606, +1607, +1608, +1609, +130, +131, +132, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 2027, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1616, +1617, +1618, +1619, +762, +763, +764, +765, +766, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 31044, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +145, +146, +147, +148, +149, +150, +151, +152, +153, +154, +155, +156, +157, +158, +159, +160, +161, +162, +163, +164, +165, +166, +167, +168, +169, +170, +171, +172, +173, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 97, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +955, +956, +957, +958, +959, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 480, +"tbk": 6, +"tl": 0, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1263, +1264, +1265, +1266, +1323, +937, +762, +763, +764, +765, +766, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1049, +1050, +1051, +1052, +1053, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 266, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1610, +1611, +1612, +1613, +1620, +1436, +1437, +1438, +1439, +1440, +1441, +1442, +1443, +1444, +1445, +1446, +1447, +1448, +1449, +1450, +1451, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 1080, +"tbk": 1, +"tl": 13, +"mb": 1080, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +1313, +1314, +1621, +1622, +1623, +1624, +1625, +1626, +1627, +1628, +1629, +1630, +1631, +1632, +1633, +1634, +1635, +1636, +26 +] +}, +{ +"tb": 1920, +"tbk": 3, +"tl": 0, +"mb": 640, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1637, +1638, +1639, +1640, +1641, +1642, +1643, +423, +424, +425, +426, +427, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 128, +"tbk": 1, +"tl": 77515181, +"mb": 128, +"mbk": 1, +"gb": 128, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1644, +1645, +1646, +1647, +1648, +1649, +1650, +1651, +1652, +1653, +1654, +1655, +26 +] +}, +{ +"tb": 212, +"tbk": 1, +"tl": 75571315, +"mb": 212, +"mbk": 1, +"gb": 212, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +938, +939, +940, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +390, +391 +] +}, +{ +"tb": 212, +"tbk": 1, +"tl": 12, +"mb": 212, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1295, +1296, +1297, +1298, +1299, +1300, +1301, +1302, +1303, +1304, +1305, +1306, +1307, +1308, +1309, +1310, +1311, +1312, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 75570016, +"mb": 72, +"mbk": 1, +"gb": 72, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +441, +442, +443, +444, +445, +446, +447, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +753, +391 +] +}, +{ +"tb": 228, +"tbk": 1, +"tl": 75571597, +"mb": 228, +"mbk": 1, +"gb": 228, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +938, +939, +940, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +698, +391 +] +}, +{ +"tb": 45, +"tbk": 2, +"tl": 129, +"mb": 30, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +1573, +1574, +1575, +1576, +1575, +1576, +1577, +1578, +1579, +1580, +1581, +1582, +1656, +1657, +1658, +270, +271, +272, +24, +25 +] +}, +{ +"tb": 400, +"tbk": 1, +"tl": 75594035, +"mb": 400, +"mbk": 1, +"gb": 400, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +879, +880, +881, +882, +883, +884, +130, +131, +132, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 74, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +1606, +1607, +1608, +1609, +61, +62, +63, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 75576574, +"mb": 16, +"mbk": 1, +"gb": 16, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1197, +1198, +1199, +1200, +1201, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 204, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +861, +862, +863, +864, +865, +866, +867, +868, +556, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1049, +1050, +1051, +1052, +1053, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 296, +"tbk": 1, +"tl": 18, +"mb": 296, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +57, +58, +59, +60, +61, +62, +63, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25 +] +}, +{ +"tb": 4, +"tbk": 1, +"tl": 75589520, +"mb": 4, +"mbk": 1, +"gb": 4, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1030, +1031, +1032, +1033, +1034, +1035, +1036, +1037, +1038, +1039, +1040, +130, +131, +132, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 366, +"tbk": 4, +"tl": 42, +"mb": 122, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +1659, +1660, +1661, +1662, +1663, +1664, +1665, +1666, +1667, +1668, +1669, +1670, +1671, +1672, +1673, +1674, +1675, +1676, +1677, +1674, +1678, +1679, +1680, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576 +] +}, +{ +"tb": 4971950, +"tbk": 598290, +"tl": 3861392, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1681, +1682, +1683, +1684, +1685, +1686, +1687, +1688, +1689, +1690, +1691, +1692, +1693, +1694, +1695, +1696, +1697, +1698, +1699, +1700, +1701, +1702, +1703, +1704, +1705, +1702, +1706, +1707, +1708, +223, +224, +225, +226, +227, +24, +25, +26 +] +}, +{ +"tb": 560, +"tbk": 30, +"tl": 1225, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +481, +482, +1709, +1710, +1711, +1712, +1713, +1714, +1715, +1716, +1717, +1718, +1719, +1720, +1721, +1722, +1723, +1724, +1725, +1726, +1727, +1728, +1729, +1730, +503, +504, +505, +506, +507, +508, +509, +510, +511, +512, +513, +514, +515, +516, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 260, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +116 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 1649, +"mb": 72, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +699, +700, +701, +702, +1600, +1601, +1602, +1603, +1604, +1605, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 24, +"tbk": 2, +"tl": 75574308, +"mb": 16, +"mbk": 1, +"gb": 8, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +517, +518, +519, +520, +521, +522, +523, +524, +525, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 26, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1731, +1732, +1733, +1734, +1735, +1736, +1737, +1738, +1739, +1740, +1741, +1742, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 388, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +575, +547, +548, +556, +198, +576, +577, +578, +579, +580, +581, +1568, +1569, +1570, +1571, +1572, +554, +555, +198 +] +}, +{ +"tb": 256, +"tbk": 2, +"tl": 4784, +"mb": 256, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1236, +1237, +1238, +1239, +1240, +1241, +1242, +1243, +1244, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 224, +"tbk": 1, +"tl": 20, +"mb": 224, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +57, +58, +59, +60, +130, +131, +132, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25 +] +}, +{ +"tb": 192, +"tbk": 4, +"tl": 0, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1515, +1516, +1517, +1518, +1519, +176, +177, +178, +179, +180, +181, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +474, +475, +1482, +1483, +1484, +1485, +13, +14, +15, +16, +17, +18, +74 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 9, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +582, +583, +584, +585, +586, +61, +62, +63, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 448, +"tbk": 3, +"tl": 19, +"mb": 288, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +174, +175, +176, +177, +178, +179, +180, +181, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 1566, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +133, +134, +135, +136, +1743, +1744, +1745, +138, +139, +140, +141, +142, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 215, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1746, +1747, +1748, +1749, +1750, +716, +717, +718, +719, +720, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 536, +"tbk": 1, +"tl": 77515983, +"mb": 536, +"mbk": 1, +"gb": 536, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1751, +1752, +1753, +1754, +1755, +1756, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 37, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1167, +1168, +1169, +1170, +11, +12, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 384, +"tbk": 2, +"tl": 151, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +1757, +1758, +1759, +762, +763, +764, +765, +766, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 56, +"tbk": 1, +"tl": 30924, +"mb": 56, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +968, +969, +970, +971, +972, +973, +974, +975, +976, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 3968, +"tbk": 5, +"tl": 896, +"mb": 2048, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +93, +94, +95, +96, +97, +98, +99, +100, +101, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +64 +] +}, +{ +"tb": 288, +"tbk": 2, +"tl": 4823, +"mb": 288, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +557, +558, +559, +560, +561, +562, +563, +564, +565, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 108, +"tbk": 1, +"tl": 75569970, +"mb": 108, +"mbk": 1, +"gb": 108, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1088, +1089, +1090, +1091, +1092, +1093, +1094, +1095, +1096, +1097, +1098, +1099, +1100, +1101, +1102, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +753, +391 +] +}, +{ +"tb": 1344, +"tbk": 3, +"tl": 249, +"mb": 768, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +946, +947, +948, +1760, +1761, +1762, +1763, +1764, +1765, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 108, +"tbk": 1, +"tl": 75571522, +"mb": 108, +"mbk": 1, +"gb": 108, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1088, +1089, +1090, +1091, +1092, +1093, +1094, +1095, +1096, +1097, +1098, +1099, +1100, +1101, +1102, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +698, +391 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1049, +1050, +1051, +1052, +1053, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23 +] +}, +{ +"tb": 80, +"tbk": 2, +"tl": 151177810, +"mb": 80, +"mbk": 2, +"gb": 80, +"gbk": 2, +"eb": 0, +"ebk": 0, +"fs": [ +869, +870, +871, +872, +873, +874, +875, +876, +877, +878, +61, +62, +63, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 70, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +1757, +1758, +1759, +762, +763, +764, +765, +766, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 40, +"tbk": 1, +"tl": 75600363, +"mb": 40, +"mbk": 1, +"gb": 40, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1118, +1119, +1120, +1121, +1122, +1123, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 3, +"tbk": 3, +"tl": 313, +"mb": 3, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +392, +393, +394, +395, +396, +397, +398, +399, +9, +10, +746, +747, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 72902848, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +596, +448, +449, +450, +451, +452, +453, +454, +455, +456, +457, +458, +459, +460, +461, +462, +463, +464, +465, +223, +224 +] +}, +{ +"tb": 96, +"tbk": 12, +"tl": 13156, +"mb": 48, +"mbk": 6, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +1766, +1595, +1596, +1597, +556, +198, +576, +577, +578, +579, +580, +581, +549, +550, +551, +552, +553, +554, +555 +] +}, +{ +"tb": 64, +"tbk": 2, +"tl": 3008, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +541, +542, +543, +544, +545, +546, +547, +548, +191, +198, +192, +193, +194, +195, +196, +197, +198 +] +}, +{ +"tb": 384, +"tbk": 2, +"tl": 3897, +"mb": 384, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +1561, +1562, +1563, +937, +762, +763, +764, +765, +766, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 5504, +"tbk": 20, +"tl": 2641, +"mb": 3328, +"mbk": 9, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +791, +792, +793, +794, +795, +796, +797, +266, +267, +268, +269, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 76, +"tbk": 9, +"tl": 2861, +"mb": 76, +"mbk": 9, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +337, +338, +339, +340, +341, +342, +343, +344, +345, +346, +347, +348, +349, +350, +266, +267, +731, +732, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 75576742, +"mb": 96, +"mbk": 1, +"gb": 96, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1218, +1219, +1220, +1221, +1222, +1223, +1224, +61, +62, +63, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 97, +"mb": 160, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +932, +933, +934, +935, +1598, +1599, +762, +763, +764, +765, +766, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 256, +"tbk": 2, +"tl": 4905, +"mb": 256, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1236, +1237, +1238, +1239, +1240, +1241, +1242, +1243, +1244, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 170, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +1766, +546, +547, +548, +556, +576, +577, +578, +579, +580, +581, +198, +199, +200, +201, +202, +128, +129 +] +}, +{ +"tb": 576, +"tbk": 2, +"tl": 129, +"mb": 384, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +946, +947, +948, +1760, +1761, +1762, +1763, +1764, +1765, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 2160, +"tbk": 6, +"tl": 232542498, +"mb": 1352, +"mbk": 4, +"gb": 1080, +"gbk": 3, +"eb": 1080, +"ebk": 3, +"fs": [ +1767, +1768, +1769, +1770, +1771, +1772, +1773, +1774, +1775, +1776, +1777, +1778, +1779, +1780, +1781, +1782, +1783, +1784, +1785, +1786, +1783, +1784, +1787, +1788, +1789, +1790, +1791, +1792, +1793, +898, +899, +900, +901, +902, +903, +904, +905, +906, +907, +908, +909, +910, +911, +912, +913, +914, +915, +916, +917, +918, +919, +920 +] +}, +{ +"tb": 96, +"tbk": 3, +"tl": 8944, +"mb": 96, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +1794, +1795, +1796, +1797, +1798, +1799, +1800, +1801, +1802, +1803, +1804, +1805, +1806, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +596, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +753 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 75570306, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1542, +1543, +1544, +1545, +1546, +1547, +1548, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +941, +391 +] +}, +{ +"tb": 38, +"tbk": 1, +"tl": 38, +"mb": 38, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +960, +961, +962, +963, +964, +965, +966, +967, +61, +62, +63, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 128, +"tbk": 1, +"tl": 1653, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1236, +1237, +1238, +1239, +1240, +1241, +1242, +1243, +1244, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 653, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +1313, +1314, +1807, +1808, +1809, +1810, +1811, +1812, +1813, +1814, +1815, +1816, +1817, +1818, +1819, +1820, +1821, +1822, +1823, +1824, +26 +] +}, +{ +"tb": 64, +"tbk": 2, +"tl": 436, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +541, +542, +543, +544, +545, +546, +547, +548, +191, +576, +577, +578, +579, +580, +581, +198, +776, +777, +778 +] +}, +{ +"tb": 480, +"tbk": 2, +"tl": 0, +"mb": 320, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1825, +1826, +1827, +1828, +1829, +1830, +1831, +1832, +1833, +1834, +1835, +1836, +1837, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75570233, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +596, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +941, +391, +609, +610, +611, +612 +] +}, +{ +"tb": 10, +"tbk": 1, +"tl": 75586956, +"mb": 10, +"mbk": 1, +"gb": 10, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +654, +655, +656, +657, +658, +659, +660, +661, +662, +663, +664, +665, +666, +667, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 4, +"tbk": 1, +"tl": 75592141, +"mb": 4, +"mbk": 1, +"gb": 4, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1030, +1031, +1032, +1033, +1034, +1035, +1036, +1037, +1038, +1039, +1040, +61, +62, +63, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 39, +"tbk": 7, +"tl": 310, +"mb": 18, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +721, +722, +723, +724, +725, +726, +727, +728, +729, +730, +138, +139, +140, +141, +142, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 29, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1610, +1611, +1612, +1613, +1614, +1615, +61, +62, +63, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 300, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1746, +1747, +1748, +1749, +1750, +716, +717, +718, +719, +720, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 75570251, +"mb": 72, +"mbk": 1, +"gb": 72, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +441, +442, +443, +444, +445, +446, +447, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +941, +391 +] +}, +{ +"tb": 240, +"tbk": 3, +"tl": 22778, +"mb": 240, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +779, +780, +781, +782, +783, +784, +762, +763, +764, +765, +766, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 3, +"tbk": 1, +"tl": 836, +"mb": 3, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +228, +229, +230, +231, +232, +233, +234, +235, +236, +237, +238, +239, +240, +241, +242, +243, +244, +1838, +1839, +1840, +1841, +1842, +1843, +1844, +1845, +1846, +26 +] +}, +{ +"tb": 112, +"tbk": 7, +"tl": 10037, +"mb": 32, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +828, +829, +830, +831, +832, +833, +199, +200, +201, +202, +128, +129, +61, +62, +63, +13, +14, +15 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 75588938, +"mb": 96, +"mbk": 1, +"gb": 96, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1218, +1219, +1220, +1221, +1222, +1223, +1224, +61, +62, +63, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 18, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1847, +1848, +1849, +1850, +1851, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 2409, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +75, +76, +77, +78, +79, +80, +81, +82, +83, +84, +85, +86, +87, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 316, +"tbk": 1, +"tl": 103, +"mb": 316, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +767, +768, +769, +770, +771, +772, +773, +61, +62, +63, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 40, +"tbk": 2, +"tl": 75594335, +"mb": 32, +"mbk": 1, +"gb": 8, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +845, +846, +847, +848, +849, +850, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 20, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +203, +204, +205, +206, +207, +110, +111, +112, +113, +1852, +1853, +1854, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 1400, +"tbk": 25, +"tl": 64906, +"mb": 1400, +"mbk": 25, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1348, +1349, +1350, +1351, +1352, +1353, +1354, +1355, +1356, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 1364, +"tbk": 1, +"tl": 2574, +"mb": 1364, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +767, +768, +769, +770, +771, +772, +773, +130, +131, +132, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 7564, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +932, +933, +934, +935, +1541, +937, +762, +763, +764, +765, +766, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 896, +"tbk": 16, +"tl": 58783, +"mb": 896, +"mbk": 16, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1348, +1349, +1350, +1351, +1352, +1353, +1354, +1355, +1356, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +474, +475, +476, +477, +478, +479, +13, +14, +15, +16, +17, +18, +298 +] +}, +{ +"tb": 440, +"tbk": 1, +"tl": 75571485, +"mb": 440, +"mbk": 1, +"gb": 440, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +750, +751, +752, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +698, +391 +] +}, +{ +"tb": 135, +"tbk": 10, +"tl": 377852993, +"mb": 90, +"mbk": 5, +"gb": 90, +"gbk": 5, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +1855, +1856, +1857, +1858, +1859, +1860, +1861, +1862, +1863, +1285, +1286, +1287, +1288, +1289, +377, +378, +379, +380, +381, +382, +383, +384, +385, +386, +387, +388, +389 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 4843, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1386, +1387, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +474, +475, +476, +477, +478, +479, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 21, +"tbk": 1, +"tl": 43, +"mb": 21, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +960, +961, +962, +963, +964, +965, +966, +967, +130, +131, +132, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 172825920, +"tbk": 200030, +"tl": 136964628771, +"mb": 17282592, +"mbk": 20003, +"gb": 864, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +1203, +1204, +1205, +1206, +1864, +1865, +1866, +1867, +1868, +1869, +1870, +1871, +1872, +1873, +1874, +1875, +1876, +1877, +1878, +1879, +1880, +1881, +1882, +1883, +1217, +225, +226, +227 +] +}, +{ +"tb": 32, +"tbk": 2, +"tl": 266, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +1245, +1246, +554, +555, +556, +828, +829, +830, +831, +832, +833, +199, +200, +201, +202 +] +}, +{ +"tb": 288, +"tbk": 1, +"tl": 113, +"mb": 288, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 288, +"ebk": 1, +"fs": [ +1884, +1885, +1886, +1887, +1888, +1889, +1890, +1891, +1892, +1893, +1894, +1895, +1896, +1897, +1898, +1899, +1900, +1901, +1902, +26 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 14924, +"mb": 160, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1173, +1174, +1175, +1176, +1177, +1178, +762, +763, +764, +765, +766, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 0, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1263, +1264, +1265, +1266, +1267, +761, +762, +763, +764, +765, +766, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 2, +"tl": 14948, +"mb": 96, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1616, +1617, +1618, +1619, +762, +763, +764, +765, +766, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1903, +1904, +1905, +1906, +1907, +1908, +1909, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75573193, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1520, +1521, +1522, +1523, +1524, +1525, +1526, +1527, +1528, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 31, +"tbk": 1, +"tl": 77515119, +"mb": 31, +"mbk": 1, +"gb": 31, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1910, +1911, +1912, +1913, +1914, +1915, +1916, +1917, +1918, +1919, +1920, +1921, +1922, +1923, +1924, +1925, +1926, +1927, +1928, +1929, +1930, +1931, +1932, +1933, +1934, +1935, +26 +] +}, +{ +"tb": 300, +"tbk": 1, +"tl": 27, +"mb": 300, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +57, +58, +59, +60, +61, +62, +63, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23 +] +}, +{ +"tb": 16, +"tbk": 2, +"tl": 1156, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +1766, +546, +547, +548, +556, +198, +576, +577, +578, +579, +580, +581, +834, +835, +836, +837, +838, +554, +555 +] +}, +{ +"tb": 176, +"tbk": 1, +"tl": 75575618, +"mb": 176, +"mbk": 1, +"gb": 176, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1936, +1937, +1938, +1939, +1940, +1941, +1942, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 30894, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1943, +1944, +1945, +1946, +1947, +1948, +1949, +1950, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 2409, +"mb": 72, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +699, +700, +701, +702, +1951, +561, +562, +563, +564, +565, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 176, +"tbk": 1, +"tl": 141, +"mb": 176, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +767, +768, +769, +770, +771, +772, +773, +130, +131, +132, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 1448, +"tbk": 1, +"tl": 75576561, +"mb": 1448, +"mbk": 1, +"gb": 1448, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1268, +1269, +1270, +1271, +1272, +1273, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 19, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +359, +360, +361, +362, +363, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 75570362, +"mb": 160, +"mbk": 1, +"gb": 160, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +750, +751, +752, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +941, +391 +] +}, +{ +"tb": 192, +"tbk": 6, +"tl": 445, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +541, +542, +543, +544, +545, +546, +547, +548, +556, +198, +576, +577, +578, +579, +580, +581, +1568, +1569, +1570, +1571, +1572 +] +}, +{ +"tb": 96, +"tbk": 2, +"tl": 401, +"mb": 96, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1952, +1953, +1954, +1955, +1437, +1438, +1439, +1440, +1441, +1442, +1443, +1444, +1445, +1446, +1447, +1448, +1449, +1450, +1451, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 256, +"tbk": 2, +"tl": 4942, +"mb": 256, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1236, +1237, +1238, +1239, +1240, +1241, +1242, +1243, +1244, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 424, +"tbk": 1, +"tl": 75571223, +"mb": 424, +"mbk": 1, +"gb": 424, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +938, +939, +940, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +390, +391 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 1481, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +932, +933, +934, +935, +1541, +937, +762, +763, +764, +765, +766, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 28, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1610, +1611, +1612, +1613, +1614, +1615, +61, +62, +63, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 16000, +"tbk": 1, +"tl": 1785, +"mb": 16000, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1956, +1957, +1958, +1959, +1960, +1961, +1962, +1963, +1964, +1965, +1966, +191, +839, +840, +841, +842, +843, +844, +776, +777, +778, +839, +840, +841, +842, +843, +844, +199, +200, +201, +202, +128, +129, +61, +62, +63, +13, +14, +15 +] +}, +{ +"tb": 576, +"tbk": 2, +"tl": 2045, +"mb": 384, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +1561, +1562, +1563, +937, +762, +763, +764, +765, +766, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 75570108, +"mb": 72, +"mbk": 1, +"gb": 72, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +441, +442, +443, +444, +445, +446, +447, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +753, +391 +] +}, +{ +"tb": 133584, +"tbk": 11, +"tl": 75600619, +"mb": 49152, +"mbk": 1, +"gb": 35376, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1179, +1180, +1181, +1182, +1183, +1184, +1185, +1186, +61, +62, +63, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92 +] +}, +{ +"tb": 192, +"tbk": 4, +"tl": 11352, +"mb": 192, +"mbk": 4, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1616, +1617, +1618, +1619, +762, +763, +764, +765, +766, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 19, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +986, +987, +988, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 176, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +861, +862, +863, +864, +865, +866, +867, +868, +556, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 648, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +857, +858, +859, +860, +762, +763, +764, +765, +766, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 192, +"tbk": 2, +"tl": 532, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +678, +679, +680, +681, +682, +199, +200, +201, +202, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +64 +] +}, +{ +"tb": 2, +"tbk": 1, +"tl": 39, +"mb": 2, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +299, +300, +301, +302, +303, +304, +305, +306, +307, +308, +309, +310, +311, +312, +130, +131, +132, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +474, +475, +476, +477, +478, +479, +13, +14, +15, +16, +17, +18, +208, +209, +210 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 1429, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +1041, +1042, +1043, +1044, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 228, +"tbk": 1, +"tl": 75571579, +"mb": 228, +"mbk": 1, +"gb": 228, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +750, +751, +752, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +698, +391 +] +}, +{ +"tb": 48, +"tbk": 6, +"tl": 2079, +"mb": 48, +"mbk": 6, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +1766, +1595, +1596, +1597, +556, +576, +577, +578, +579, +580, +581, +198, +199, +200, +201, +202, +128, +129 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1049, +1050, +1051, +1052, +1053, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23 +] +}, +{ +"tb": 1008, +"tbk": 6, +"tl": 1036, +"mb": 512, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +824, +825, +826, +827, +191, +839, +840, +841, +842, +843, +844, +776, +777, +778, +839, +840, +841, +842, +843, +844, +199, +200, +201, +202 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 1814, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +861, +862, +863, +864, +865, +866, +867, +868, +556, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1110, +1111, +1112, +1113, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 224, +"tbk": 6, +"tl": 327, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +824, +825, +826, +827, +556, +828, +829, +830, +831, +832, +833, +1568, +1569, +1570, +1571, +1572, +554, +555, +839, +840, +841, +842, +843, +844 +] +}, +{ +"tb": 13500000, +"tbk": 200000, +"tl": 17700673, +"mb": 90, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +1967, +1968, +1969, +1970, +1971, +24, +25, +26 +] +}, +{ +"tb": 112, +"tbk": 3, +"tl": 25, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +1972, +1973, +1974, +1975, +1976, +1977, +1978, +1979, +1980, +1981, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 24, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1982, +1983, +1984, +1985, +1986, +1987, +1988, +1989, +1990, +1991 +] +}, +{ +"tb": 672, +"tbk": 3, +"tl": 37, +"mb": 384, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +313, +314, +315, +316, +317, +318, +319, +320, +321, +322, +323, +324, +325, +326, +327, +328, +13, +14, +15, +16, +17, +18, +19 +] +}, +{ +"tb": 32, +"tbk": 2, +"tl": 1109, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +198, +576, +577, +578, +579, +580, +581, +834, +835, +836, +837, +838, +554, +555, +198 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 302, +"mb": 160, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1825, +1826, +1827, +1992, +1993, +1994, +1995, +1996, +1997, +1998, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 408, +"tbk": 3, +"tl": 75599622, +"mb": 192, +"mbk": 1, +"gb": 120, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1179, +1180, +1181, +1182, +1183, +1184, +1185, +1186, +61, +62, +63, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92 +] +}, +{ +"tb": 992, +"tbk": 5, +"tl": 28, +"mb": 512, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1999, +2000, +2001, +2002, +2003, +2004, +2005, +2006, +2007, +322, +323, +324, +325, +326, +327, +328, +13, +14, +15, +16, +17, +18, +208, +209, +210 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 2392, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2008, +2009, +2010, +561, +562, +563, +564, +565, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 75587374, +"mb": 80, +"mbk": 1, +"gb": 80, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +65, +66, +67, +68, +69, +70, +71, +72, +73, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 1, +"tbk": 1, +"tl": 28, +"mb": 1, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +977, +978, +979, +980, +981, +982, +983, +984, +985, +748, +749, +1171, +1172, +1114, +1115, +1116, +1117, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 128, +"tbk": 2, +"tl": 258, +"mb": 128, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1, +2, +3, +4, +5, +6, +7, +8, +9, +10, +11, +12, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 535, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +332, +333, +334, +335, +336, +199, +200, +201, +202, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +208, +209, +210 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 63, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +289, +290, +291, +292, +293, +294, +295, +296, +297, +130, +131, +132, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 228, +"tbk": 1, +"tl": 74, +"mb": 228, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +1103, +1104, +1105, +1106, +1107, +1108, +1109, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 75583549, +"mb": 80, +"mbk": 1, +"gb": 80, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1588, +1589, +1590, +1591, +1592, +1593, +1594, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 74, +"mb": 160, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +1103, +1104, +1105, +1106, +1107, +1108, +1109, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1583, +1584, +1585, +1586, +1587, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 112, +"tbk": 3, +"tl": 23, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +1972, +1973, +1974, +1975, +1976, +1977, +1978, +1979, +1980, +1981, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 75599874, +"mb": 16, +"mbk": 1, +"gb": 16, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +528, +529, +530, +531, +532, +533, +534, +535, +536, +537, +130, +131, +132, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 311, +"mb": 160, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1825, +1826, +1827, +1992, +1993, +1994, +1995, +1996, +1997, +1998, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 7398940, +"tbk": 100000, +"tl": 132452657851, +"mb": 748894, +"mbk": 10000, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2011, +2012, +2013, +2014, +2015, +2016, +2017, +2018, +2019, +2020, +2021, +2022, +609, +610, +611, +612, +24, +25, +26 +] +}, +{ +"tb": 176, +"tbk": 1, +"tl": 75600088, +"mb": 176, +"mbk": 1, +"gb": 176, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1936, +1937, +1938, +1939, +1940, +1941, +1942, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 648, +"tbk": 3, +"tl": 10556, +"mb": 648, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1187, +1188, +1189, +1190, +1191, +1192, +1193, +1194, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 75577186, +"mb": 96, +"mbk": 1, +"gb": 96, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1218, +1219, +1220, +1221, +1222, +1223, +1224, +130, +131, +132, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 18, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +359, +360, +361, +362, +363, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 946, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +120, +121, +122, +123, +124, +125, +126, +127, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23 +] +}, +{ +"tb": 28, +"tbk": 1, +"tl": 27, +"mb": 28, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +57, +58, +59, +60, +130, +131, +132, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92 +] +}, +{ +"tb": 41728, +"tbk": 8, +"tl": 75581651, +"mb": 16384, +"mbk": 1, +"gb": 9216, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +733, +734, +735, +736, +737, +738, +739, +740, +741, +742, +743, +744, +745, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75580541, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1520, +1521, +1522, +1523, +1524, +1525, +1526, +1527, +1528, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 4, +"tbk": 1, +"tl": 75594371, +"mb": 4, +"mbk": 1, +"gb": 4, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1030, +1031, +1032, +1033, +1034, +1035, +1036, +1037, +1038, +1039, +1040, +130, +131, +132, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 2, +"tl": 15854, +"mb": 32, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1943, +1944, +1945, +1946, +1947, +1948, +1949, +1950, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +596, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +941 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 75589469, +"mb": 96, +"mbk": 1, +"gb": 96, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1218, +1219, +1220, +1221, +1222, +1223, +1224, +130, +131, +132, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 66, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1290, +1291, +1292, +1293, +1294, +176, +177, +178, +179, +180, +181, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 960, +"tbk": 30, +"tl": 4732, +"mb": 192, +"mbk": 6, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +541, +542, +543, +544, +545, +1595, +1596, +1597, +556, +198, +576, +577, +578, +579, +580, +581, +1568, +1569, +1570, +1571, +1572 +] +}, +{ +"tb": 80, +"tbk": 2, +"tl": 2470, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2023, +2024, +2025, +705, +706, +707, +708, +709, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 2000, +"tbk": 1, +"tl": 75591592, +"mb": 2000, +"mbk": 1, +"gb": 2000, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1259, +1260, +1261, +1262, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 2296, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2026, +2027, +2028, +2029, +2030, +2031, +2032, +2033, +2034, +2035, +2036, +2037, +2038, +2039, +1466, +138, +139, +140, +141, +142, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 973, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1386, +1387, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 2452, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2008, +2009, +2010, +561, +562, +563, +564, +565, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 84, +"tbk": 2, +"tl": 151148088, +"mb": 84, +"mbk": 2, +"gb": 84, +"gbk": 2, +"eb": 0, +"ebk": 0, +"fs": [ +869, +870, +871, +872, +873, +874, +875, +876, +877, +878, +61, +62, +63, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 27, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +289, +290, +291, +292, +293, +294, +295, +296, +297, +61, +62, +63, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 3584, +"tbk": 3, +"tl": 72902814, +"mb": 2048, +"mbk": 1, +"gb": 2048, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +683, +684, +685, +686, +687, +688, +689, +690, +448, +449, +450, +451, +452, +453, +454, +455, +456, +457, +458, +459, +460, +461, +462, +463, +464, +465, +223 +] +}, +{ +"tb": 1, +"tbk": 1, +"tl": 65, +"mb": 1, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2040, +2041, +2042, +2043, +2044, +2045, +2046, +2047, +2048, +1424, +1425, +1426, +1427, +1428, +1429, +1430, +1431, +1432, +1433, +1434, +1435, +1436, +1437, +1438, +1439, +1440, +1441, +1442, +1443, +1444, +1445, +1446, +1447, +1448, +1449, +1450, +1451, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 47616, +"tbk": 7, +"tl": 75576974, +"mb": 16384, +"mbk": 1, +"gb": 15360, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +733, +734, +735, +736, +737, +738, +739, +740, +741, +742, +743, +744, +745, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 16, +"tbk": 7, +"tl": 19666, +"mb": 16, +"mbk": 7, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1339, +1340, +1341, +1342, +1343, +1344, +1345, +1346, +1347, +937, +762, +763, +764, +765, +766, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 75572255, +"mb": 16, +"mbk": 1, +"gb": 16, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +998, +999, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 1798, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +75, +76, +77, +78, +79, +80, +81, +82, +83, +84, +85, +86, +87, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 400, +"tbk": 1, +"tl": 75585079, +"mb": 400, +"mbk": 1, +"gb": 400, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +879, +880, +881, +882, +883, +884, +61, +62, +63, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 2000, +"tbk": 1, +"tl": 75576582, +"mb": 2000, +"mbk": 1, +"gb": 2000, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1259, +1260, +1261, +1262, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 384, +"tbk": 2, +"tl": 122, +"mb": 256, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +93, +94, +95, +96, +97, +98, +99, +100, +101, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +143, +144 +] +}, +{ +"tb": 2400, +"tbk": 4, +"tl": 0, +"mb": 1280, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2049, +2050, +2051, +2052, +2053, +2054, +2055, +2056, +2057, +2058, +2059, +914, +915, +916, +917, +918, +919, +920, +921, +922, +923, +924, +925, +926, +927, +928, +929, +930, +931, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 206, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2060, +2061, +2062, +1750, +716, +717, +718, +719, +720, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 2032, +"tbk": 1, +"tl": 75600445, +"mb": 2032, +"mbk": 1, +"gb": 2032, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +2063, +2064, +2065, +2066, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 3996340, +"tbk": 400060, +"tl": 1062992666531, +"mb": 197829, +"mbk": 20004, +"gb": 197817, +"gbk": 20003, +"eb": 0, +"ebk": 0, +"fs": [ +2067, +2068, +2069, +2070, +2071, +2072, +2073, +2074, +2075, +2076, +2077, +2078, +2079, +2080, +1514, +2081, +2082, +2083, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 28, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +174, +175, +176, +177, +178, +179, +180, +181, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 18, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +359, +360, +361, +362, +363, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23 +] +}, +{ +"tb": 320, +"tbk": 4, +"tl": 0, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +105, +106, +107, +108, +109, +110, +111, +112, +113, +114, +115, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +474, +475, +476, +477, +478, +479, +13, +14, +15, +16, +17, +18, +64 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 9247, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +88, +89 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 1356, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1386, +1387, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23 +] +}, +{ +"tb": 96, +"tbk": 6, +"tl": 525, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1061, +1062, +1063, +1064, +556, +198, +576, +577, +578, +579, +580, +581, +1568, +1569, +1570, +1571, +1572, +554, +555, +198, +576, +577, +578, +579, +580, +581, +198 +] +}, +{ +"tb": 96, +"tbk": 6, +"tl": 25, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1000, +1001, +1002, +1003, +1004, +556, +828, +829, +830, +831, +832, +833, +1568, +1569, +1570, +1571, +1572, +554, +555, +839, +840, +841, +842, +843, +844, +199, +200, +201, +202, +128, +129 +] +}, +{ +"tb": 384, +"tbk": 2, +"tl": 82, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +1757, +1758, +1759, +762, +763, +764, +765, +766, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1049, +1050, +1051, +1052, +1053, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23 +] +}, +{ +"tb": 1398110, +"tbk": 1398110, +"tl": 66969, +"mb": 1, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1681, +1682, +1683, +1684, +1685, +1686, +1687, +1688, +1689, +1690, +1691, +1692, +1693, +1694, +2084, +2085, +2086, +2087, +2088, +2089, +2090, +2091, +2092, +2093, +2094, +2095, +2092, +2096, +2097, +1708, +223, +224, +225, +226, +227, +24, +25, +26 +] +}, +{ +"tb": 480, +"tbk": 2, +"tl": 9, +"mb": 320, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1825, +1826, +1827, +1828, +1829, +1830, +1831, +1832, +1833, +1834, +1835, +1836, +1837, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 2, +"tl": 2738, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +541, +542, +543, +544, +545, +546, +547, +548, +191, +192, +193, +194, +195, +196, +197, +198, +198 +] +}, +{ +"tb": 1448, +"tbk": 1, +"tl": 75588750, +"mb": 1448, +"mbk": 1, +"gb": 1448, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1268, +1269, +1270, +1271, +1272, +1273, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 4, +"tbk": 1, +"tl": 75581387, +"mb": 4, +"mbk": 1, +"gb": 4, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1030, +1031, +1032, +1033, +1034, +1035, +1036, +1037, +1038, +1039, +1040, +61, +62, +63, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 190, +"tbk": 10, +"tl": 775109103, +"mb": 190, +"mbk": 10, +"gb": 190, +"gbk": 10, +"eb": 0, +"ebk": 0, +"fs": [ +47, +2098, +2099, +2100, +2101, +2102, +2103, +2104, +2105, +2106, +2107, +2108, +2109, +2110, +2111, +2112, +2113, +2114, +2115, +2110, +2116, +2117, +2118, +2119, +2120, +2121, +2122, +2123, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 5896, +"tbk": 1, +"tl": 28, +"mb": 5896, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +57, +58, +59, +60, +61, +62, +63, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 1662, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1943, +1944, +1945, +1240, +1241, +1242, +1243, +1244, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 2, +"tl": 4958, +"mb": 32, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1943, +1944, +1945, +1240, +1241, +1242, +1243, +1244, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +596, +448, +449, +450, +451, +452, +453, +454, +455, +456, +457, +458, +459, +460, +461, +462, +463, +464, +465 +] +}, +{ +"tb": 2976, +"tbk": 5, +"tl": 28, +"mb": 1536, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +313, +314, +315, +316, +317, +318, +319, +320, +321, +322, +323, +324, +325, +326, +327, +328, +13, +14, +15, +16, +17, +18, +208, +209, +210 +] +}, +{ +"tb": 11, +"tbk": 1, +"tl": 159, +"mb": 11, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +392, +393, +394, +395, +396, +397, +398, +399, +9, +10, +11, +12, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 76, +"tbk": 1, +"tl": 20, +"mb": 76, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +57, +58, +59, +60, +130, +131, +132, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23 +] +}, +{ +"tb": 44, +"tbk": 1, +"tl": 38, +"mb": 44, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +960, +961, +962, +963, +964, +965, +966, +967, +130, +131, +132, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 75570343, +"mb": 72, +"mbk": 1, +"gb": 72, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +441, +442, +443, +444, +445, +446, +447, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +941, +391 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75570089, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +596, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +753, +391, +609, +610, +611, +612 +] +}, +{ +"tb": 12, +"tbk": 1, +"tl": 77515160, +"mb": 12, +"mbk": 1, +"gb": 12, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +2124, +2125, +2126, +2127, +2128, +2129, +2130, +2131, +2132, +2133, +2134, +2135, +2136, +2137, +2138, +2139, +2140, +2141, +2142, +2143, +2144, +2145, +2146, +2147, +2148, +2149, +26 +] +}, +{ +"tb": 1024, +"tbk": 1, +"tl": 77516524, +"mb": 1024, +"mbk": 1, +"gb": 1024, +"gbk": 1, +"eb": 1024, +"ebk": 1, +"fs": [ +2150, +2151, +2152, +2153, +2154, +2155, +2156, +2157, +2158, +2159, +2160, +2161, +2162, +901, +2163, +2164, +2165, +2166, +2167, +2168, +2169, +2170, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 77516517, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 64, +"ebk": 1, +"fs": [ +2171, +2172, +2173, +2174, +2175, +2176, +2177, +2178, +2179, +2180, +2181, +2182, +2183, +2184, +2170, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 937, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +332, +333, +334, +335, +336, +199, +200, +201, +202, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +19 +] +}, +{ +"tb": 1344, +"tbk": 3, +"tl": 383, +"mb": 768, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +946, +947, +948, +1760, +1761, +1762, +1763, +1764, +1765, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +474, +475, +1482, +1483, +1484, +1485, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 4, +"tl": 541, +"mb": 32, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2060, +2061, +2062, +1750, +716, +717, +718, +719, +720, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 75580534, +"mb": 80, +"mbk": 1, +"gb": 80, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1588, +1589, +1590, +1591, +1592, +1593, +1594, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 1979, +"tbk": 1, +"tl": 1876721, +"mb": 1979, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +2185, +2186, +2187, +2188, +2189, +2190, +2191, +2192, +2193, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 2762, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +2194, +2195, +2196, +2197, +2198, +2199, +2200, +2201, +2202, +172, +173, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 384, +"tbk": 2, +"tl": 146, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +1757, +1758, +1759, +762, +763, +764, +765, +766, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 3, +"tbk": 1, +"tl": 467, +"mb": 3, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +228, +229, +230, +231, +232, +233, +234, +235, +236, +237, +238, +239, +240, +241, +242, +243, +244, +1838, +1839, +1840, +1841, +1842, +1843, +250, +251, +252, +253, +254, +26 +] +}, +{ +"tb": 164, +"tbk": 1, +"tl": 2, +"mb": 164, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2203, +2204, +2205, +2206, +2207, +2208, +2209, +2210, +2211, +2212, +1307, +1308, +1309, +1310, +1311, +1312, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 3, +"tbk": 3, +"tl": 81, +"mb": 1, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +977, +978, +979, +980, +981, +982, +983, +984, +985, +748, +749, +746, +747, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 64, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +289, +290, +291, +292, +293, +294, +295, +296, +297, +130, +131, +132, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 152, +"tbk": 1, +"tl": 98, +"mb": 152, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +767, +768, +769, +770, +771, +772, +773, +61, +62, +63, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 1512, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +1794, +1795, +1796, +1797, +1798, +1799, +1800, +1801, +1802, +1803, +1804, +1805, +1806, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 72902998, +"mb": 48, +"mbk": 1, +"gb": 48, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +2213, +2214, +2215, +2216, +2217, +2218, +2219, +2220, +2221, +2222, +457, +458, +459, +460, +461, +462, +463, +464, +465, +223, +224, +225, +226, +227, +24, +25, +26 +] +}, +{ +"tb": 200, +"tbk": 1, +"tl": 82, +"mb": 200, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +428, +429, +430, +431, +432, +433, +434, +435, +436, +437, +438, +439, +440, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 64, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +289, +290, +291, +292, +293, +294, +295, +296, +297, +130, +131, +132, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 38, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +203, +204, +205, +206, +207, +110, +111, +112, +113, +114, +115, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 144, +"tbk": 1, +"tl": 19, +"mb": 144, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +57, +58, +59, +60, +130, +131, +132, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23 +] +}, +{ +"tb": 178247040, +"tbk": 140, +"tl": 523832, +"mb": 8912896, +"mbk": 1, +"gb": 8912896, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +1203, +2223, +2224, +2225, +2226, +2227, +2228, +1215, +1216, +1217, +225, +226, +227, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 57, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +1606, +1607, +1608, +1609, +61, +62, +63, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 2, +"tbk": 1, +"tl": 37, +"mb": 2, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +299, +300, +301, +302, +303, +304, +305, +306, +307, +308, +309, +310, +311, +312, +61, +62, +63, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 651, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1386, +1387, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23 +] +}, +{ +"tb": 1152, +"tbk": 1, +"tl": 202, +"mb": 1152, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +416, +417, +418, +419, +420, +421, +422, +423, +424, +425, +426, +427, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 624, +"tbk": 3, +"tl": 58, +"mb": 384, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2229, +2230, +110, +111, +112, +113, +114, +115, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 2470, +"mb": 72, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +699, +700, +701, +702, +1951, +561, +562, +563, +564, +565, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 948, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +2231, +2232, +2233, +2234, +839, +840, +841, +842, +843, +844, +199, +200, +201, +202, +128, +129, +61, +62, +63, +13, +14, +15 +] +}, +{ +"tb": 616, +"tbk": 22, +"tl": 81028, +"mb": 616, +"mbk": 22, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +1766, +1595, +1596, +1597, +191, +192, +193, +194, +195, +196, +197, +198, +198, +199, +200, +201, +202 +] +}, +{ +"tb": 40, +"tbk": 1, +"tl": 75581157, +"mb": 40, +"mbk": 1, +"gb": 40, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1118, +1119, +1120, +1121, +1122, +1123, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 128, +"tbk": 2, +"tl": 15831, +"mb": 128, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +2235, +2236, +2237, +2238, +2239, +2240, +2241, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 48, +"tbk": 3, +"tl": 10426, +"mb": 48, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1565, +1566, +1567, +561, +562, +563, +564, +565, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 30804, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +2242, +2243, +2244, +561, +562, +563, +564, +565, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 9, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +582, +583, +584, +585, +586, +61, +62, +63, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 14, +"tbk": 4, +"tl": 8013, +"mb": 14, +"mbk": 4, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1339, +1340, +1341, +1342, +1343, +1344, +1345, +1346, +1347, +937, +762, +763, +764, +765, +766, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 630, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +1041, +1042, +1043, +1044, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 24, +"tbk": 2, +"tl": 5993, +"mb": 24, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +1766, +546, +547, +548, +191, +198, +192, +193, +194, +195, +196, +197, +198, +199, +200, +201, +202 +] +}, +{ +"tb": 224, +"tbk": 3, +"tl": 0, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1999, +2000, +2001, +2002, +2003, +2004, +2005, +2006, +2007, +322, +323, +324, +325, +326, +327, +328, +13, +14, +15, +16, +17, +18, +74 +] +}, +{ +"tb": 560, +"tbk": 7, +"tl": 0, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +105, +106, +107, +108, +109, +110, +111, +112, +113, +114, +115, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 2286, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +133, +134, +135, +136, +2245, +138, +139, +140, +141, +142, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 30, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1731, +1732, +1733, +1734, +1735, +1736, +1737, +1738, +1739, +1740, +1741, +1742, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 213, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1370, +1371, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 1947, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +75, +76, +77, +78, +79, +80, +81, +82, +83, +84, +85, +86, +87, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +474, +475, +1482, +1483, +1484, +1485, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 1950, +"tbk": 20, +"tl": 57223977, +"mb": 130, +"mbk": 1, +"gb": 130, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +2246, +2247, +2248, +2249, +24, +25, +26 +] +}, +{ +"tb": 68804400, +"tbk": 130, +"tl": 53058424, +"mb": 3440640, +"mbk": 1, +"gb": 3440640, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +1313, +1314, +2250, +2251, +2252, +2253, +2254, +2255, +2256, +2257, +2258, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75570389, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +1357, +1358, +1359, +1360, +1361, +1362, +1363, +1364, +1365, +1366, +1367, +1368, +1369, +457, +458, +604, +605, +606, +607, +608, +941, +391, +609, +610, +611, +612, +24, +25 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 0, +"mb": 160, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2203, +2204, +2205, +2206, +2207, +2208, +2209, +2210, +2211, +2212, +1307, +1308, +1309, +1310, +1311, +1312, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 76, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +1757, +1758, +1759, +762, +763, +764, +765, +766, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 108, +"tbk": 1, +"tl": 75570521, +"mb": 108, +"mbk": 1, +"gb": 108, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1088, +1089, +1090, +1091, +1092, +1093, +1094, +1095, +1096, +1097, +1098, +1099, +1100, +1101, +1102, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +942, +391 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +474, +475, +1482, +1483, +1484, +1485, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 1008, +"tbk": 6, +"tl": 65, +"mb": 512, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +1972, +1973, +1974, +1975, +1976, +1977, +1978, +1979, +1980, +1981, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 616, +"tbk": 22, +"tl": 33267, +"mb": 616, +"mbk": 22, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +1766, +1595, +1596, +1597, +191, +576, +577, +578, +579, +580, +581, +198, +776, +777, +778, +576, +577, +578, +579, +580, +581 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 83, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1731, +1732, +1733, +1734, +1735, +1736, +1737, +1738, +1739, +1740, +1741, +1742, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 240, +"tbk": 3, +"tl": 8865, +"mb": 240, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +779, +780, +781, +782, +783, +784, +762, +763, +764, +765, +766, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 3565, +"mb": 72, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +699, +700, +701, +702, +2259, +2260, +705, +706, +707, +708, +709, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 2198230, +"tbk": 200030, +"tl": 10850263, +"mb": 13, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2261, +2262, +2263, +2264, +2265, +2266, +2267, +2268, +2269, +2270, +1708, +223, +224, +225, +226, +227, +24, +25, +26 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 47, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1290, +1291, +1292, +1293, +1294, +176, +177, +178, +179, +180, +181, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 240, +"tbk": 2, +"tl": 75574528, +"mb": 192, +"mbk": 1, +"gb": 48, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +851, +852, +853, +854, +855, +856, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23 +] +}, +{ +"tb": 3, +"tbk": 1, +"tl": 826, +"mb": 3, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +228, +229, +230, +231, +232, +233, +234, +235, +236, +237, +238, +239, +240, +241, +242, +243, +244, +1065, +1066, +1067, +1068, +1069, +1070, +1071, +1072, +1844, +1845, +1846, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 37, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1167, +1168, +1169, +1170, +11, +12, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 2352, +"tbk": 42, +"tl": 76413, +"mb": 2352, +"mbk": 42, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1348, +1349, +1350, +1351, +1352, +1353, +1354, +1355, +1356, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 128, +"tbk": 1, +"tl": 147, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +2271, +2272, +2273, +2274, +2275, +2276, +2277, +2278, +2279, +2280, +2281, +2282, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +64 +] +}, +{ +"tb": 3584, +"tbk": 3, +"tl": 72902715, +"mb": 2048, +"mbk": 1, +"gb": 2048, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +683, +684, +685, +686, +687, +688, +689, +690, +448, +1399, +1400, +1401, +1402, +1403, +1404, +1405, +1406, +457, +458, +459, +460, +461, +462, +463, +464, +465, +223 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 16, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +2242, +2243, +2244, +561, +562, +563, +564, +565, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 2010, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1056, +1057, +1058, +1059, +1060, +761, +762, +763, +764, +765, +766, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 75590332, +"mb": 160, +"mbk": 1, +"gb": 160, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +645, +646, +647, +648, +649, +650, +651, +652, +650, +653, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 75570474, +"mb": 72, +"mbk": 1, +"gb": 72, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +441, +442, +443, +444, +445, +446, +447, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +942, +391 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 75571989, +"mb": 96, +"mbk": 1, +"gb": 96, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1218, +1219, +1220, +1221, +1222, +1223, +1224, +61, +62, +63, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 1792, +"tbk": 3, +"tl": 75571429, +"mb": 1024, +"mbk": 1, +"gb": 1024, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +683, +684, +685, +686, +687, +688, +689, +690, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +698, +391 +] +}, +{ +"tb": 768, +"tbk": 3, +"tl": 123, +"mb": 384, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +1757, +1758, +1759, +762, +763, +764, +765, +766, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 76, +"tbk": 1, +"tl": 69, +"mb": 76, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +1103, +1104, +1105, +1106, +1107, +1108, +1109, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 32640, +"tbk": 8, +"tl": 6469, +"mb": 16384, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +93, +94, +95, +96, +97, +98, +99, +100, +101, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +88, +89 +] +}, +{ +"tb": 96, +"tbk": 3, +"tl": 108, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1167, +1168, +1169, +1170, +746, +747, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 208, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2283, +2284, +2285, +2286, +2287, +2288, +2289, +2290, +2291, +2292, +2293, +2294, +2295, +2296, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 120, +"tbk": 2, +"tl": 75612680, +"mb": 96, +"mbk": 1, +"gb": 24, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +613, +614, +615, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92 +] +}, +{ +"tb": 34, +"tbk": 1, +"tl": 360, +"mb": 34, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +392, +393, +394, +395, +396, +397, +398, +399, +9, +10, +11, +12, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 8064, +"tbk": 6, +"tl": 9, +"mb": 4096, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +791, +792, +793, +794, +795, +796, +797, +351, +352, +268, +269, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 27, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1610, +1611, +1612, +1613, +1614, +1615, +130, +131, +132, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 4756, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +678, +679, +680, +681, +682, +199, +200, +201, +202, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +526, +527 +] +}, +{ +"tb": 1352, +"tbk": 1, +"tl": 20, +"mb": 1352, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +57, +58, +59, +60, +130, +131, +132, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +474, +475, +1482, +1483, +1484, +1485, +13, +14, +15, +16, +17, +18, +526, +527 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75583557, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1520, +1521, +1522, +1523, +1524, +1525, +1526, +1527, +1528, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 120, +"tbk": 1, +"tl": 0, +"mb": 120, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2203, +2204, +2205, +2206, +2207, +2208, +2209, +2210, +2211, +2212, +1307, +1308, +1309, +1310, +1311, +1312, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 115, +"tbk": 1, +"tl": 37, +"mb": 115, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +960, +961, +962, +963, +964, +965, +966, +967, +61, +62, +63, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 1152, +"tbk": 1, +"tl": 61, +"mb": 1152, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +416, +417, +418, +419, +420, +421, +422, +423, +424, +425, +426, +427, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 78, +"tbk": 9, +"tl": 2554, +"mb": 78, +"mbk": 9, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +337, +338, +339, +340, +341, +342, +343, +344, +345, +346, +347, +348, +349, +350, +266, +267, +268, +269, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1583, +1584, +1585, +1586, +1587, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 1770, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +2194, +2195, +2196, +2197, +2198, +2199, +2200, +2201, +2202, +172, +173, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 326, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +74 +] +}, +{ +"tb": 120, +"tbk": 2, +"tl": 75572244, +"mb": 96, +"mbk": 1, +"gb": 24, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +613, +614, +615, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 0, +"mb": 160, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1825, +1826, +1827, +1828, +1829, +1830, +1831, +1832, +1833, +1834, +1835, +1836, +1837, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 2000, +"tbk": 1, +"tl": 75571840, +"mb": 2000, +"mbk": 1, +"gb": 2000, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1259, +1260, +1261, +1262, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 75579295, +"mb": 16, +"mbk": 1, +"gb": 16, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1197, +1198, +1199, +1200, +1201, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 800, +"tbk": 2, +"tl": 0, +"mb": 640, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +668, +669, +670, +671, +672, +673, +674, +176, +177, +178, +179, +180, +181, +16, +17, +18, +19, +20, +21, +22, +23 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 1334, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +1041, +1042, +1043, +1044, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 28, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +203, +204, +205, +206, +207, +110, +111, +112, +113, +114, +115, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 1969, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1056, +1057, +1058, +1059, +1060, +761, +762, +763, +764, +765, +766, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 131, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2297, +2298, +2299, +1750, +716, +717, +718, +719, +720, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 28, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1610, +1611, +1612, +1613, +1614, +1615, +61, +62, +63, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 2510, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +1041, +1042, +1043, +1044, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 1797, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +120, +121, +122, +123, +124, +125, +126, +127, +128, +129, +61, +62, +63, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 141, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2300, +2301, +2302, +2303, +1750, +716, +717, +718, +719, +720, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 3297, +"mb": 72, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1529, +1530, +1531, +1532, +1533, +561, +562, +563, +564, +565, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 12801920, +"tbk": 200030, +"tl": 9551, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2304, +2305, +2306, +2307, +2308, +2309, +2310, +2311, +2312, +2313, +2314, +2315, +1708, +223, +224, +225, +226, +227, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 75585694, +"mb": 96, +"mbk": 1, +"gb": 96, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1218, +1219, +1220, +1221, +1222, +1223, +1224, +130, +131, +132, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 2, +"tl": 170, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2060, +2061, +2062, +1750, +716, +717, +718, +719, +720, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 4, +"tbk": 1, +"tl": 75574564, +"mb": 4, +"mbk": 1, +"gb": 4, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1030, +1031, +1032, +1033, +1034, +1035, +1036, +1037, +1038, +1039, +1040, +130, +131, +132, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 6, +"tbk": 1, +"tl": 75583184, +"mb": 6, +"mbk": 1, +"gb": 6, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +654, +655, +656, +657, +658, +659, +660, +661, +662, +663, +664, +665, +666, +667, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 320, +"tbk": 4, +"tl": 201, +"mb": 160, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +932, +933, +934, +935, +1598, +1599, +762, +763, +764, +765, +766, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 10, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1295, +1296, +1297, +1298, +1299, +1300, +1301, +1302, +1303, +1304, +1305, +1306, +1307, +1308, +1309, +1310, +1311, +1312, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 264, +"tbk": 21, +"tl": 63, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1000, +1001, +1002, +1003, +1004, +556, +828, +829, +830, +831, +832, +833, +199, +200, +201, +202, +128, +129, +61, +62, +63, +13, +14, +15, +16, +17, +18 +] +}, +{ +"tb": 640, +"tbk": 1, +"tl": 0, +"mb": 640, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1637, +1638, +1639, +1640, +1641, +1642, +1643, +423, +424, +425, +426, +427, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 639, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +779, +780, +781, +782, +783, +784, +762, +763, +764, +765, +766, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1583, +1584, +1585, +1586, +1587, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23 +] +}, +{ +"tb": 144, +"tbk": 1, +"tl": 19, +"mb": 144, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +57, +58, +59, +60, +61, +62, +63, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23 +] +}, +{ +"tb": 32, +"tbk": 2, +"tl": 222, +"mb": 32, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2060, +2061, +2062, +1750, +716, +717, +718, +719, +720, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 212, +"tbk": 1, +"tl": 90, +"mb": 212, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +428, +429, +430, +431, +432, +433, +434, +435, +436, +437, +438, +439, +440, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 19, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1847, +1848, +1849, +1850, +1851, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23 +] +}, +{ +"tb": 2, +"tbk": 2, +"tl": 60596, +"mb": 2, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1339, +1340, +1341, +1342, +1343, +1344, +1345, +1346, +1347, +937, +762, +763, +764, +765, +766, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 552, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +208, +209, +210 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 4776, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +120, +121, +122, +123, +124, +125, +126, +127, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 3565, +"mb": 72, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +699, +700, +701, +702, +2259, +2260, +705, +706, +707, +708, +709, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 1326, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +120, +121, +122, +123, +124, +125, +126, +127, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23 +] +}, +{ +"tb": 896, +"tbk": 1, +"tl": 246, +"mb": 896, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +710, +711, +712, +713, +714, +715, +716, +717, +718, +719, +720, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 12801920, +"tbk": 200030, +"tl": 8181, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +211, +212, +213, +214, +215, +216, +217, +218, +219, +220, +2316, +1708, +223, +224, +225, +226, +227, +24, +25, +26 +] +}, +{ +"tb": 15387610, +"tbk": 600090, +"tl": 1958870, +"mb": 52, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +2185, +2317, +2318, +2319, +2320, +2321, +2322, +2323, +2324, +2325, +2326, +2327, +2328, +2329, +2330, +2331, +2332, +2333, +2334, +2335, +464, +465, +223, +224 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 36, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +2336, +2337, +2338, +2339, +2340, +2341, +2342, +2343, +2344, +2345, +2346, +2347, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 128, +"tbk": 2, +"tl": 9, +"mb": 128, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +2348, +2349, +2350, +2351, +2352, +2353, +2354, +322, +323, +324, +325, +326, +327, +328, +13, +14, +15, +16, +17, +18, +298 +] +}, +{ +"tb": 324, +"tbk": 4, +"tl": 158, +"mb": 108, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +1573, +1574, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 3921, +"mb": 160, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +932, +933, +934, +935, +936, +937, +762, +763, +764, +765, +766, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 2, +"tl": 61572, +"mb": 32, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1565, +1566, +1567, +561, +562, +563, +564, +565, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 0, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +2242, +2243, +2244, +561, +562, +563, +564, +565, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 1615, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1565, +1566, +1567, +561, +562, +563, +564, +565, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 1333, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +74 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 9, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +582, +583, +584, +585, +586, +61, +62, +63, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 77514265, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 64, +"ebk": 1, +"fs": [ +2355, +2356, +2357, +2358, +2359, +2360, +2361, +2362, +2363, +2364, +2365, +2366, +2367, +898, +899, +900, +901, +902, +903, +904, +905, +906, +907, +908, +909, +910, +911, +912, +913, +914, +915, +916, +917, +918, +919, +920, +921, +922, +923, +924, +925, +926, +927, +928, +929, +930, +931 +] +}, +{ +"tb": 212, +"tbk": 1, +"tl": 66, +"mb": 212, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +1103, +1104, +1105, +1106, +1107, +1108, +1109, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 1316, +"tbk": 1, +"tl": 19, +"mb": 1316, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2203, +2204, +2205, +2206, +2207, +2208, +2209, +2210, +2211, +2212, +1307, +1308, +1309, +1310, +1311, +1312, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 2046, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +932, +933, +934, +935, +936, +937, +762, +763, +764, +765, +766, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 10, +"tbk": 4, +"tl": 7851, +"mb": 10, +"mbk": 4, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1339, +1340, +1341, +1342, +1343, +1344, +1345, +1346, +1347, +937, +762, +763, +764, +765, +766, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 5, +"tl": 377852994, +"mb": 80, +"mbk": 5, +"gb": 80, +"gbk": 5, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +2368, +2369, +2370, +2371, +2372, +1285, +1286, +1287, +1288, +1289, +377, +378, +379, +380, +381, +382, +383, +384, +385, +386, +387, +388 +] +}, +{ +"tb": 10120, +"tbk": 314, +"tl": 3558039, +"mb": 10120, +"mbk": 314, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +1766, +1595, +1596, +1597, +191, +198, +192, +193, +194, +195, +196, +197, +198, +199, +200, +201, +202 +] +}, +{ +"tb": 130944, +"tbk": 10, +"tl": 2527, +"mb": 65536, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +93, +94, +95, +96, +97, +98, +99, +100, +101, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +88, +89 +] +}, +{ +"tb": 176, +"tbk": 1, +"tl": 75630543, +"mb": 176, +"mbk": 1, +"gb": 176, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1936, +1937, +1938, +1939, +1940, +1941, +1942, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 144, +"tbk": 1, +"tl": 2587, +"mb": 144, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +754, +755, +756, +757, +758, +759, +760, +761, +762, +763, +764, +765, +766, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 42, +"tbk": 2, +"tl": 2945, +"mb": 42, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1339, +1340, +1341, +1342, +1343, +1344, +1345, +1346, +1347, +937, +762, +763, +764, +765, +766, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 1132, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +575, +547, +548, +556, +198, +576, +577, +578, +579, +580, +581, +834, +835, +836, +837, +838, +554, +555, +198 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +596, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +942 +] +}, +{ +"tb": 400, +"tbk": 1, +"tl": 75572162, +"mb": 400, +"mbk": 1, +"gb": 400, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +879, +880, +881, +882, +883, +884, +130, +131, +132, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1903, +1904, +1905, +1906, +1907, +1908, +1909, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23 +] +}, +{ +"tb": 2, +"tbk": 1, +"tl": 39, +"mb": 2, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +299, +300, +301, +302, +303, +304, +305, +306, +307, +308, +309, +310, +311, +312, +130, +131, +132, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 568, +"tbk": 1, +"tl": 275, +"mb": 568, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2373, +2374, +2375, +2376, +2377, +2378, +2379, +2380, +2381, +2382, +2383, +2384, +1436, +1437, +1438, +1439, +1440, +1441, +1442, +1443, +1444, +1445, +1446, +1447, +1448, +1449, +1450, +1451, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 768, +"tbk": 4, +"tl": 10970, +"mb": 768, +"mbk": 4, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +1561, +1562, +1563, +937, +762, +763, +764, +765, +766, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 96, +"tbk": 2, +"tl": 57, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +1606, +1607, +1608, +1609, +130, +131, +132, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 1387, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1386, +1387, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 27, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1610, +1611, +1612, +1613, +1614, +1615, +130, +131, +132, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1110, +1111, +1112, +1113, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 666, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +2385, +2386, +2387, +2388, +2389, +1799, +1800, +1801, +1802, +1803, +1804, +1805, +1806, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75570620, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +2390, +2391, +2392, +2393, +2394, +2395, +2396, +2397, +2398, +457, +458, +604, +605, +606, +607, +608, +942, +391, +609, +610, +611, +612, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 75591584, +"mb": 16, +"mbk": 1, +"gb": 16, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1197, +1198, +1199, +1200, +1201, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 7920, +"tbk": 7, +"tl": 75588862, +"mb": 3072, +"mbk": 1, +"gb": 1872, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1179, +1180, +1181, +1182, +1183, +1184, +1185, +1186, +61, +62, +63, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 66, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +1606, +1607, +1608, +1609, +61, +62, +63, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 132, +"tbk": 4, +"tl": 302340563, +"mb": 132, +"mbk": 4, +"gb": 132, +"gbk": 4, +"eb": 0, +"ebk": 0, +"fs": [ +869, +870, +871, +872, +873, +874, +875, +876, +877, +878, +61, +62, +63, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 56, +"tbk": 1, +"tl": 2517, +"mb": 56, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +968, +969, +970, +971, +972, +973, +974, +975, +976, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 128, +"tbk": 1, +"tl": 138, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +989, +990, +991, +992, +993, +994, +995, +996, +997, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 192, +"tbk": 4, +"tl": 0, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1515, +1516, +1517, +1518, +1519, +176, +177, +178, +179, +180, +181, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 444, +"tbk": 1, +"tl": 128, +"mb": 444, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +767, +768, +769, +770, +771, +772, +773, +61, +62, +63, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 85504, +"tbk": 8, +"tl": 75585462, +"mb": 32768, +"mbk": 1, +"gb": 20480, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +733, +734, +735, +736, +737, +738, +739, +740, +741, +742, +743, +744, +745, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 64, +"tbk": 4, +"tl": 540, +"mb": 32, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2060, +2061, +2062, +1750, +716, +717, +718, +719, +720, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 512, +"tbk": 1, +"tl": 75576567, +"mb": 512, +"mbk": 1, +"gb": 512, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1225, +1226, +1227, +1228, +1229, +1230, +1231, +1232, +1233, +1234, +1235, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 480, +"tbk": 15, +"tl": 2177, +"mb": 192, +"mbk": 6, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +541, +542, +543, +544, +545, +1595, +1596, +1597, +556, +576, +577, +578, +579, +580, +581, +198, +199, +200, +201, +202 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 75570530, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1542, +1543, +1544, +1545, +1546, +1547, +1548, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +942, +391 +] +}, +{ +"tb": 316, +"tbk": 1, +"tl": 75570270, +"mb": 316, +"mbk": 1, +"gb": 316, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +750, +751, +752, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +941, +391 +] +}, +{ +"tb": 3968, +"tbk": 5, +"tl": 754, +"mb": 2048, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +93, +94, +95, +96, +97, +98, +99, +100, +101, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +74 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 25, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1731, +1732, +1733, +1734, +1735, +1736, +1737, +1738, +1739, +1740, +1741, +1742, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 229, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1952, +1953, +1954, +1955, +1424, +1425, +1426, +1427, +1428, +1429, +1430, +1431, +1432, +1433, +1434, +1435, +1436, +1437, +1438, +1439, +1440, +1441, +1442, +1443, +1444, +1445, +1446, +1447, +1448, +1449, +1450, +1451, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 28, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1, +2, +3, +4, +5, +6, +7, +8, +9, +10, +11, +12, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 1550, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +779, +780, +781, +782, +783, +784, +762, +763, +764, +765, +766, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 2176, +"tbk": 34, +"tl": 4977, +"mb": 2176, +"mbk": 34, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +2348, +2349, +2350, +2351, +2352, +2353, +2354, +322, +323, +324, +325, +326, +327, +328, +13, +14, +15, +16, +17, +18, +208, +209, +210 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 18, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +986, +987, +988, +748, +749, +1171, +1172, +1114, +1115, +1116, +1117, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 20275, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +678, +679, +680, +681, +682, +199, +200, +201, +202, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +88, +89 +] +}, +{ +"tb": 50, +"tbk": 10, +"tl": 1059306, +"mb": 5, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2399, +2400, +2401, +2402, +2403, +2404, +2405, +2406, +2407, +2408, +2409, +2410, +1577, +1578, +1579, +1580, +1581, +1582, +2411, +2412, +504, +505, +506, +507, +508, +509, +510, +511, +512, +513, +514, +515, +516, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 2019, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1173, +1174, +1175, +1176, +1177, +1178, +762, +763, +764, +765, +766, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 304, +"tbk": 2, +"tl": 10, +"mb": 288, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +582, +583, +584, +585, +586, +61, +62, +63, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 400, +"tbk": 1, +"tl": 75592039, +"mb": 400, +"mbk": 1, +"gb": 400, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +879, +880, +881, +882, +883, +884, +61, +62, +63, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 544, +"tbk": 3, +"tl": 56, +"mb": 352, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +174, +175, +176, +177, +178, +179, +180, +181, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 75592131, +"mb": 96, +"mbk": 1, +"gb": 96, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1218, +1219, +1220, +1221, +1222, +1223, +1224, +61, +62, +63, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 1120, +"tbk": 3, +"tl": 10, +"mb": 640, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2413, +2414, +2415, +2416, +2417, +2418, +2419, +2420, +2421, +2422, +2423, +914, +915, +916, +917, +918, +919, +920, +921, +922, +923, +924, +925, +926, +927, +928, +929, +930, +931, +26 +] +}, +{ +"tb": 162, +"tbk": 2, +"tl": 21, +"mb": 108, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +2424, +2425, +1421, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 0, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +2426, +2427, +2428, +937, +762, +763, +764, +765, +766, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 176, +"tbk": 1, +"tl": 75578316, +"mb": 176, +"mbk": 1, +"gb": 176, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1936, +1937, +1938, +1939, +1940, +1941, +1942, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 927, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +678, +679, +680, +681, +682, +199, +200, +201, +202, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +19 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 0, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1515, +1516, +1517, +1518, +1519, +176, +177, +178, +179, +180, +181, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 1005, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1386, +1387, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1110, +1111, +1112, +1113, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75570611, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +1357, +1358, +1359, +1360, +1361, +1362, +1363, +1364, +1365, +1366, +1367, +1368, +1369, +457, +458, +604, +605, +606, +607, +608, +942, +391, +609, +610, +611, +612, +24, +25 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 1727, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1943, +1944, +1945, +1240, +1241, +1242, +1243, +1244, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75570961, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1274, +1275, +1276, +1277, +1278, +1279, +1280, +1281, +1282, +1283, +1284, +2429, +2430, +2431, +2432, +2433, +2434, +2435, +379, +380, +381, +382, +383, +384, +385, +386, +387, +388, +389, +390, +391 +] +}, +{ +"tb": 122, +"tbk": 2, +"tl": 80, +"mb": 61, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2436, +2437, +2438, +2439, +2440, +2441, +2442, +2443, +2444, +2445, +2446, +2447, +2448, +2449, +2450, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576 +] +}, +{ +"tb": 5840, +"tbk": 3, +"tl": 411, +"mb": 3520, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +2451, +2452, +2453, +2454, +2455, +2456, +2457, +2458, +2459, +2460, +2461, +2462, +2463, +2464, +921, +922, +923, +924, +925, +926, +927, +928, +929, +930, +931, +26 +] +}, +{ +"tb": 320000, +"tbk": 1, +"tl": 4750, +"mb": 320000, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2465, +2466, +2467, +2468, +2469, +2470, +2471, +2472, +2473, +2474, +189, +190, +191, +192, +193, +194, +195, +196, +197, +198, +198, +199, +200, +201, +202, +128, +129 +] +}, +{ +"tb": 48, +"tbk": 6, +"tl": 16797, +"mb": 48, +"mbk": 6, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +1766, +1595, +1596, +1597, +556, +198, +576, +577, +578, +579, +580, +581, +198, +199, +200, +201, +202 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 317, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +120, +121, +122, +123, +124, +125, +126, +127, +128, +129, +61, +62, +63, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23 +] +}, +{ +"tb": 24, +"tbk": 2, +"tl": 75576974, +"mb": 16, +"mbk": 1, +"gb": 8, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +517, +518, +519, +520, +521, +522, +523, +524, +525, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 2, +"tl": 0, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1515, +1516, +1517, +1518, +1519, +176, +177, +178, +179, +180, +181, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 4, +"tbk": 1, +"tl": 75577232, +"mb": 4, +"mbk": 1, +"gb": 4, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1030, +1031, +1032, +1033, +1034, +1035, +1036, +1037, +1038, +1039, +1040, +130, +131, +132, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 402, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +2336, +2337, +2338, +2339, +2340, +2341, +2342, +2343, +2344, +2345, +2346, +2347, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +474, +475, +476, +477, +478, +479, +13, +14, +15, +16, +17, +18, +143, +144 +] +}, +{ +"tb": 144, +"tbk": 3, +"tl": 0, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1515, +1516, +1517, +1518, +1519, +176, +177, +178, +179, +180, +181, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 144, +"tbk": 1, +"tl": 1, +"mb": 144, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2203, +2204, +2205, +2206, +2207, +2208, +2209, +2210, +2211, +2212, +1307, +1308, +1309, +1310, +1311, +1312, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +474, +475, +1482, +1483, +1484, +1485, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 2416, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +75, +76, +77, +78, +79, +80, +81, +82, +83, +84, +85, +86, +87, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 400, +"tbk": 1, +"tl": 75571914, +"mb": 400, +"mbk": 1, +"gb": 400, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +879, +880, +881, +882, +883, +884, +61, +62, +63, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 176, +"tbk": 1, +"tl": 75587350, +"mb": 176, +"mbk": 1, +"gb": 176, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1936, +1937, +1938, +1939, +1940, +1941, +1942, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 56, +"tbk": 2, +"tl": 75570962, +"mb": 40, +"mbk": 1, +"gb": 40, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +2368, +2369, +2370, +2371, +2372, +2429, +2430, +2431, +2432, +2433, +2434, +2435, +379, +380, +381, +382, +383, +384, +385, +386, +387, +388 +] +}, +{ +"tb": 144, +"tbk": 1, +"tl": 75570127, +"mb": 144, +"mbk": 1, +"gb": 144, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +750, +751, +752, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +753, +391 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 2496, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +1606, +1607, +1608, +1609, +130, +131, +132, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 14, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +582, +583, +584, +585, +586, +130, +131, +132, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 75583175, +"mb": 160, +"mbk": 1, +"gb": 160, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +645, +646, +647, +648, +649, +650, +651, +652, +650, +653, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 3, +"tl": 2647, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +541, +542, +543, +544, +545, +546, +547, +548, +556, +198, +576, +577, +578, +579, +580, +581, +198 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 3306, +"mb": 72, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +699, +700, +701, +702, +1951, +561, +562, +563, +564, +565, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 3996340, +"tbk": 400060, +"tl": 366722507002, +"mb": 435634, +"mbk": 40006, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2475, +2476, +2477, +2478, +2479, +2480, +2481, +2482, +2483, +2484, +390, +391, +609, +610, +611, +612, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 2330, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1565, +1566, +1567, +561, +562, +563, +564, +565, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +474, +475, +476, +477, +478, +479, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 80, +"tbk": 2, +"tl": 3416, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2023, +2024, +2025, +705, +706, +707, +708, +709, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 15726720, +"tbk": 130, +"tl": 11443423, +"mb": 786432, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +2485, +2486, +2487, +2488, +2489, +2490, +609, +610, +611, +612, +24, +25, +26 +] +}, +{ +"tb": 144, +"tbk": 1, +"tl": 28, +"mb": 144, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +57, +58, +59, +60, +130, +131, +132, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23 +] +}, +{ +"tb": 112, +"tbk": 3, +"tl": 20, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +1972, +1973, +1974, +1975, +1976, +1977, +1978, +1979, +1980, +1981, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 2240, +"tbk": 10, +"tl": 1873745, +"mb": 224, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +791, +1534, +1535, +1536, +1537, +1538, +1539, +1540, +503, +504, +505, +506, +507, +508, +509, +510, +511, +512, +513, +514, +515, +516, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 8064, +"tbk": 6, +"tl": 155, +"mb": 4096, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +93, +94, +95, +96, +97, +98, +99, +100, +101, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +19 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75570456, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +596, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +942, +391, +609, +610, +611, +612 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +2271, +2272, +2491, +2492, +2493, +2494, +2495, +2496, +2497, +2498, +2499, +2500, +761, +762, +763, +764, +765, +766, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 252, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +120, +121, +122, +123, +124, +125, +126, +127, +128, +129, +61, +62, +63, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 1409, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +932, +933, +934, +935, +1541, +937, +762, +763, +764, +765, +766, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 3840, +"tbk": 20, +"tl": 1873254, +"mb": 256, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +791, +792, +793, +794, +2501, +2502, +2503, +266, +267, +503, +504, +505, +506, +507, +508, +509, +510, +511, +512, +513, +514, +515, +516, +270, +271, +272, +24, +25 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 2550, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1056, +1057, +1058, +1059, +1060, +761, +762, +763, +764, +765, +766, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1903, +1904, +1905, +1906, +1907, +1908, +1909, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23 +] +}, +{ +"tb": 212, +"tbk": 1, +"tl": 2, +"mb": 212, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2203, +2204, +2205, +2206, +2207, +2208, +2209, +2210, +2211, +2212, +1307, +1308, +1309, +1310, +1311, +1312, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 28, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +289, +290, +291, +292, +293, +294, +295, +296, +297, +61, +62, +63, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 108, +"tbk": 1, +"tl": 75571430, +"mb": 108, +"mbk": 1, +"gb": 108, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1088, +1089, +1090, +1091, +1092, +1093, +1094, +1095, +1096, +1097, +1098, +1099, +1100, +1101, +1102, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +698, +391 +] +}, +{ +"tb": 5908, +"tbk": 1, +"tl": 122, +"mb": 5908, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +767, +768, +769, +770, +771, +772, +773, +61, +62, +63, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +474, +475, +476, +477, +478, +479, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 240, +"tbk": 3, +"tl": 8915, +"mb": 240, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +133, +134, +135, +136, +137, +138, +139, +140, +141, +142, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 400, +"tbk": 1, +"tl": 75589357, +"mb": 400, +"mbk": 1, +"gb": 400, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +879, +880, +881, +882, +883, +884, +130, +131, +132, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 316, +"tbk": 1, +"tl": 28, +"mb": 316, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +57, +58, +59, +60, +61, +62, +63, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23 +] +}, +{ +"tb": 296, +"tbk": 9, +"tl": 680138139, +"mb": 296, +"mbk": 9, +"gb": 296, +"gbk": 9, +"eb": 0, +"ebk": 0, +"fs": [ +364, +365, +366, +367, +368, +369, +370, +371, +372, +373, +2504, +2505, +2506, +2434, +2435, +379, +380, +381, +382, +383, +384, +385, +386, +387, +388, +389, +390, +391 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 28, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2507, +2508, +2509, +2510, +642, +643, +644, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 288, +"tbk": 2, +"tl": 4706, +"mb": 288, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +557, +558, +559, +560, +561, +562, +563, +564, +565, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 2, +"tl": 822, +"mb": 64, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +1766, +546, +547, +548, +191, +576, +577, +578, +579, +580, +581, +198, +776, +777, +778, +576, +577, +578, +579, +580, +581 +] +}, +{ +"tb": 3968, +"tbk": 5, +"tl": 75571043, +"mb": 2048, +"mbk": 1, +"gb": 2048, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +683, +684, +685, +686, +687, +688, +689, +690, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +390, +391 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 740, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +1137, +1138, +1139, +1140, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1049, +1050, +1051, +1052, +1053, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92 +] +}, +{ +"tb": 560, +"tbk": 7, +"tl": 0, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +105, +106, +107, +108, +109, +110, +111, +112, +113, +114, +115, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 6688, +"tbk": 806, +"tl": 8259, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1061, +1062, +1063, +1064, +191, +198, +192, +193, +194, +195, +196, +197, +198, +199, +200, +201, +202, +128, +129, +130, +131, +132, +13, +14, +15 +] +}, +{ +"tb": 120, +"tbk": 2, +"tl": 75585704, +"mb": 96, +"mbk": 1, +"gb": 24, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +613, +614, +615, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 75572773, +"mb": 160, +"mbk": 1, +"gb": 160, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +645, +646, +647, +648, +649, +650, +651, +652, +650, +653, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 3, +"tl": 8945, +"mb": 96, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +1794, +1795, +1796, +1797, +1798, +1799, +1800, +1801, +1802, +1803, +1804, +1805, +1806, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 1440, +"tbk": 4, +"tl": 71, +"mb": 768, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +313, +314, +315, +316, +317, +318, +319, +320, +321, +322, +323, +324, +325, +326, +327, +328, +13, +14, +15, +16, +17, +18, +103, +104 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 48, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1290, +1291, +1292, +1293, +1294, +176, +177, +178, +179, +180, +181, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 423, +"tbk": 20, +"tl": 1463337, +"mb": 30, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +1659, +1660, +1661, +1662, +1663, +1664, +1665, +1666, +1667, +1668, +1669, +1670, +1671, +1672, +1673, +1674, +1675, +1676, +1677, +1674, +1678, +1679, +1680, +1575, +1576, +1575, +1576, +1577, +1578, +1579, +1580, +1581, +1582, +2411, +2412, +504, +505, +506, +507, +508, +509, +510, +511, +512, +513, +514, +515, +516, +270 +] +}, +{ +"tb": 2, +"tbk": 1, +"tl": 51, +"mb": 2, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +299, +300, +301, +302, +303, +304, +305, +306, +307, +308, +309, +310, +311, +312, +130, +131, +132, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 43, +"tbk": 4, +"tl": 638, +"mb": 43, +"mbk": 4, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +392, +393, +394, +395, +396, +397, +398, +399, +9, +10, +11, +12, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 12, +"tl": 8745, +"mb": 48, +"mbk": 6, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +1766, +1595, +1596, +1597, +549, +550, +551, +552, +553, +554, +555, +556, +198, +576, +577, +578, +579, +580, +581 +] +}, +{ +"tb": 24, +"tbk": 2, +"tl": 75585462, +"mb": 16, +"mbk": 1, +"gb": 8, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +517, +518, +519, +520, +521, +522, +523, +524, +525, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 2, +"tl": 10, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +174, +175, +176, +177, +178, +179, +180, +181, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 48, +"tbk": 3, +"tl": 260, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1061, +1062, +1063, +1064, +556, +198, +576, +577, +578, +579, +580, +581, +198, +199, +200, +201, +202, +128, +129, +130, +131, +132, +13, +14, +15 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 962, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +120, +121, +122, +123, +124, +125, +126, +127, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 77515097, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 64, +"ebk": 1, +"fs": [ +47, +480, +1005, +1006, +1007, +1008, +1009, +1010, +2511, +2512, +2513, +2514, +2515, +2516, +2517, +2518, +2519, +2520, +2521, +2522, +2523, +2524, +2525, +2526, +26 +] +}, +{ +"tb": 2598290, +"tbk": 400060, +"tl": 14464712, +"mb": 13, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2527, +2528, +2529, +2530, +2531, +2532, +2533, +2534, +2535, +2536, +2537, +2538, +1708, +223, +224, +225, +226, +227, +24, +25, +26 +] +}, +{ +"tb": 140, +"tbk": 1, +"tl": 77514070, +"mb": 140, +"mbk": 1, +"gb": 140, +"gbk": 1, +"eb": 140, +"ebk": 1, +"fs": [ +1767, +1768, +1769, +1770, +1771, +1772, +1773, +1774, +1775, +1776, +1777, +1778, +2539, +2540, +2541, +2542, +898, +899, +900, +901, +902, +903, +904, +905, +906, +907, +908, +909, +910, +911, +912, +913, +914, +915, +916, +917, +918, +919, +920 +] +}, +{ +"tb": 48, +"tbk": 2, +"tl": 20, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +1972, +1973, +1974, +1975, +1976, +1977, +1978, +1979, +1980, +1981, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 22, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1731, +1732, +1733, +1734, +1735, +1736, +1737, +1738, +1739, +1740, +1741, +1742, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 74, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2543, +2544, +2545, +2546, +2547, +138, +139, +140, +141, +142, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 1853, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1370, +1371, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 480, +"tbk": 15, +"tl": 16933, +"mb": 192, +"mbk": 6, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +541, +542, +543, +544, +545, +1595, +1596, +1597, +556, +198, +576, +577, +578, +579, +580, +581, +198 +] +}, +{ +"tb": 480, +"tbk": 2, +"tl": 674, +"mb": 320, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1825, +1826, +1827, +1992, +1993, +1994, +1995, +1996, +1997, +1998, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 3312, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +1137, +1138, +1139, +1140, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 1288, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +75, +76, +77, +78, +79, +80, +81, +82, +83, +84, +85, +86, +87, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2548, +2549, +2550, +2551, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 640, +"tbk": 1, +"tl": 801, +"mb": 640, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1637, +1638, +1639, +1640, +1641, +1642, +1643, +423, +424, +425, +426, +427, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 1, +"tbk": 1, +"tl": 481, +"mb": 1, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +400, +401, +402, +403, +404, +405, +406, +407, +408, +409, +410, +411, +412, +413, +414, +415, +731, +732, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 624, +"tbk": 3, +"tl": 9, +"mb": 384, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2229, +2230, +110, +111, +112, +113, +114, +115, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 896, +"tbk": 1, +"tl": 246, +"mb": 896, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +710, +711, +712, +713, +714, +715, +716, +717, +718, +719, +720, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +474, +475, +476, +477, +478, +479, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 16, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +2552, +2553, +2554, +2555, +2556, +2557, +2558, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 2, +"tl": 413, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +1766, +546, +547, +548, +556, +198, +576, +577, +578, +579, +580, +581, +1568, +1569, +1570, +1571, +1572, +554, +555 +] +}, +{ +"tb": 128, +"tbk": 1, +"tl": 258, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +989, +990, +991, +992, +993, +994, +995, +996, +997, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 1974, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1616, +1617, +1618, +1619, +762, +763, +764, +765, +766, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32000, +"tbk": 2, +"tl": 480, +"mb": 16000, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1956, +1957, +1958, +1959, +1960, +1961, +1962, +1963, +1964, +1965, +1966, +549, +550, +551, +552, +553, +554, +555, +556, +828, +829, +830, +831, +832, +833, +199, +200, +201, +202, +128, +129, +61, +62, +63, +13, +14, +15 +] +}, +{ +"tb": 7398940, +"tbk": 100000, +"tl": 531413866119, +"mb": 748894, +"mbk": 10000, +"gb": 748894, +"gbk": 10000, +"eb": 0, +"ebk": 0, +"fs": [ +2559, +2560, +2561, +2562, +2563, +2564, +2565, +2566, +2567, +2568, +2569, +2570, +2571, +2572, +2573, +24, +25, +26 +] +}, +{ +"tb": 2, +"tbk": 1, +"tl": 37, +"mb": 2, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +299, +300, +301, +302, +303, +304, +305, +306, +307, +308, +309, +310, +311, +312, +130, +131, +132, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 1448, +"tbk": 1, +"tl": 75581170, +"mb": 1448, +"mbk": 1, +"gb": 1448, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1268, +1269, +1270, +1271, +1272, +1273, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 75570438, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1542, +1543, +1544, +1545, +1546, +1547, +1548, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +942, +391 +] +}, +{ +"tb": 320, +"tbk": 4, +"tl": 0, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1263, +1264, +1265, +1266, +1323, +937, +762, +763, +764, +765, +766, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 300, +"tbk": 1, +"tl": 75570043, +"mb": 300, +"mbk": 1, +"gb": 300, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +938, +939, +940, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +753, +391 +] +}, +{ +"tb": 5896, +"tbk": 1, +"tl": 72902774, +"mb": 5896, +"mbk": 1, +"gb": 5896, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +750, +751, +752, +1399, +1400, +1401, +1402, +1403, +1404, +1405, +1406, +457, +458, +459, +460, +461, +462, +463, +464, +465, +223 +] +}, +{ +"tb": 2000, +"tbk": 1, +"tl": 75573916, +"mb": 2000, +"mbk": 1, +"gb": 2000, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1259, +1260, +1261, +1262, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 85, +"tbk": 1, +"tl": 0, +"mb": 85, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +337, +338, +339, +340, +341, +342, +343, +344, +345, +346, +347, +348, +349, +350, +351, +352, +731, +732, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 77515031, +"mb": 80, +"mbk": 1, +"gb": 80, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +2574, +2575, +2576, +2577, +2578, +2579, +2580, +2581, +2582, +2583, +2584, +2585, +26 +] +}, +{ +"tb": 644, +"tbk": 19, +"tl": 188, +"mb": 112, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +255, +256, +257, +258, +259, +260, +261, +262, +263, +264, +265, +266, +267, +731, +732, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 144, +"tbk": 3, +"tl": 22805, +"mb": 144, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +857, +858, +859, +860, +762, +763, +764, +765, +766, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 75580550, +"mb": 80, +"mbk": 1, +"gb": 80, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +65, +66, +67, +68, +69, +70, +71, +72, +73, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 3200000, +"tbk": 100000, +"tl": 9197, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2586, +2587, +2588, +2589, +2590, +2591, +2592, +2593, +2594, +2595, +2596, +2597, +753, +391, +609, +610, +611, +612, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 2232, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +133, +134, +135, +136, +137, +138, +139, +140, +141, +142, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 880, +"tbk": 11, +"tl": 1, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1263, +1264, +1265, +1266, +1323, +937, +762, +763, +764, +765, +766, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 882, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +2185, +2186, +2187, +2188, +2189, +2190, +2191, +2598, +2599, +2600, +2601, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 56, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2602, +2603, +2604, +2605, +2606, +1424, +1425, +1426, +1427, +1428, +1429, +1430, +1431, +1432, +1433, +1434, +1435, +1436, +1437, +1438, +1439, +1440, +1441, +1442, +1443, +1444, +1445, +1446, +1447, +1448, +1449, +1450, +1451, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 25920, +"tbk": 30, +"tl": 6168359, +"mb": 2592, +"mbk": 3, +"gb": 2592, +"gbk": 3, +"eb": 0, +"ebk": 0, +"fs": [ +47, +1203, +1204, +1205, +1206, +2607, +2608, +2609, +2610, +2611, +1212, +1213, +1214, +1215, +1216, +1217 +] +}, +{ +"tb": 568, +"tbk": 71, +"tl": 18, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1000, +1001, +1002, +1003, +1004, +191, +839, +840, +841, +842, +843, +844, +776, +777, +778, +839, +840, +841, +842, +843, +844, +199, +200, +201, +202, +128, +129, +61, +62, +63 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 19, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1847, +1848, +1849, +1850, +1851, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 622, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +75, +76, +77, +78, +79, +80, +81, +82, +83, +84, +85, +86, +87, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 84, +"tbk": 2, +"tl": 151153419, +"mb": 84, +"mbk": 2, +"gb": 84, +"gbk": 2, +"eb": 0, +"ebk": 0, +"fs": [ +869, +870, +871, +872, +873, +874, +875, +876, +877, +878, +61, +62, +63, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1110, +1111, +1112, +1113, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 7398940, +"tbk": 100000, +"tl": 531414397162, +"mb": 748894, +"mbk": 10000, +"gb": 748894, +"gbk": 10000, +"eb": 0, +"ebk": 0, +"fs": [ +2612, +2613, +2614, +2615, +2616, +2617, +2618, +2619, +2620, +2621, +2622, +2623, +2624, +2625, +24, +25, +26 +] +}, +{ +"tb": 12, +"tbk": 1, +"tl": 75585646, +"mb": 12, +"mbk": 1, +"gb": 12, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +869, +870, +871, +872, +873, +874, +875, +876, +877, +878, +130, +131, +132, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 224, +"tbk": 6, +"tl": 310, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +824, +825, +826, +827, +556, +828, +829, +830, +831, +832, +833, +834, +835, +836, +837, +838, +554, +555, +556 +] +}, +{ +"tb": 23, +"tbk": 1, +"tl": 277, +"mb": 23, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +392, +393, +394, +395, +396, +397, +398, +399, +9, +10, +11, +12, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 1448, +"tbk": 1, +"tl": 75591568, +"mb": 1448, +"mbk": 1, +"gb": 1448, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1268, +1269, +1270, +1271, +1272, +1273, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 640, +"tbk": 6, +"tl": 14290, +"mb": 448, +"mbk": 4, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +2235, +2236, +2237, +2238, +2239, +2240, +2241, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 144, +"tbk": 3, +"tl": 8890, +"mb": 144, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +857, +858, +859, +860, +762, +763, +764, +765, +766, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 0, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +2336, +2337, +2338, +2626, +2627, +2628, +2629, +2630, +2631, +2632, +1833, +1834, +1835, +1836, +1837, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 480, +"tbk": 4, +"tl": 71, +"mb": 256, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1999, +2000, +2001, +2002, +2003, +2004, +2005, +2006, +2007, +322, +323, +324, +325, +326, +327, +328, +13, +14, +15, +16, +17, +18, +103, +104 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 393, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +575, +547, +548, +556, +576, +577, +578, +579, +580, +581, +834, +835, +836, +837, +838, +554, +555, +556, +198 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 3839, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +2194, +2195, +2196, +2197, +2198, +2199, +2200, +2201, +2202, +172, +173, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 27, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1610, +1611, +1612, +1613, +1614, +1615, +130, +131, +132, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +474, +475, +1482, +1483, +1484, +1485, +13, +14, +15, +16, +17, +18, +19 +] +}, +{ +"tb": 268, +"tbk": 1, +"tl": 346, +"mb": 268, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +767, +768, +769, +770, +771, +772, +773, +130, +131, +132, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 7848, +"tbk": 7, +"tl": 75574001, +"mb": 3072, +"mbk": 1, +"gb": 1800, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1179, +1180, +1181, +1182, +1183, +1184, +1185, +1186, +61, +62, +63, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 2036, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1255, +1256, +1257, +1258, +937, +762, +763, +764, +765, +766, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 77516023, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +2633, +2634, +2635, +2636, +2637, +2638, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 766, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1943, +1944, +1945, +1946, +1947, +1948, +1949, +1950, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 45, +"tbk": 2, +"tl": 152, +"mb": 30, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +1573, +1574, +1575, +1576, +1575, +1576, +1577, +1578, +1579, +1580, +1581, +1582, +2639, +2640, +2641, +270, +271, +272, +24, +25 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 102, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2642, +2643, +2644, +2645, +2646, +2647, +2648, +2649, +2650, +2651, +2652, +1436, +1437, +1438, +1439, +1440, +1441, +1442, +1443, +1444, +1445, +1446, +1447, +1448, +1449, +1450, +1451, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 240, +"tbk": 5, +"tl": 0, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1515, +1516, +1517, +1518, +1519, +176, +177, +178, +179, +180, +181, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 30327, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +2426, +2427, +2428, +937, +762, +763, +764, +765, +766, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 176, +"tbk": 1, +"tl": 75598892, +"mb": 176, +"mbk": 1, +"gb": 176, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1936, +1937, +1938, +1939, +1940, +1941, +1942, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 183, +"tbk": 2, +"tl": 21, +"mb": 122, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +2653, +2654, +2655, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 7546, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +1561, +1562, +1563, +937, +762, +763, +764, +765, +766, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 32, +"tbk": 2, +"tl": 1088, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +1245, +1246, +554, +555, +198, +576, +577, +578, +579, +580, +581, +198 +] +}, +{ +"tb": 23, +"tbk": 1, +"tl": 75590341, +"mb": 23, +"mbk": 1, +"gb": 23, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +654, +655, +656, +657, +658, +659, +660, +661, +662, +663, +664, +665, +666, +667, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 40, +"tbk": 2, +"tl": 75574528, +"mb": 32, +"mbk": 1, +"gb": 8, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +845, +846, +847, +848, +849, +850, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 75572207, +"mb": 72, +"mbk": 1, +"gb": 72, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +528, +529, +530, +531, +532, +533, +534, +535, +536, +537, +130, +131, +132, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75570397, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +2390, +2391, +2392, +2393, +2394, +2395, +2396, +2397, +2398, +457, +458, +604, +605, +606, +607, +608, +941, +391, +609, +610, +611, +612, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 75599902, +"mb": 96, +"mbk": 1, +"gb": 96, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1218, +1219, +1220, +1221, +1222, +1223, +1224, +130, +131, +132, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 20160, +"tbk": 365, +"tl": 2888976, +"mb": 13760, +"mbk": 249, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +2656, +2657, +2658, +2659, +2660, +1595, +1596, +1597, +191, +198, +192, +193, +194, +195, +196, +197, +198 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 2707, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +2661, +2662, +2663, +716, +717, +718, +719, +720, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 320, +"tbk": 4, +"tl": 11319, +"mb": 320, +"mbk": 4, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1173, +1174, +1175, +1176, +1177, +1178, +762, +763, +764, +765, +766, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 2368, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +1137, +1138, +1139, +1140, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 24, +"tbk": 3, +"tl": 956, +"mb": 16, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +1766, +546, +547, +548, +556, +576, +577, +578, +579, +580, +581, +198, +198, +199, +200, +201, +202 +] +}, +{ +"tb": 4, +"tbk": 1, +"tl": 75579467, +"mb": 4, +"mbk": 1, +"gb": 4, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1030, +1031, +1032, +1033, +1034, +1035, +1036, +1037, +1038, +1039, +1040, +61, +62, +63, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75571458, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +596, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +698, +391, +609, +610, +611, +612 +] +}, +{ +"tb": 135, +"tbk": 2, +"tl": 948, +"mb": 90, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +2664, +2665, +2666, +2667, +26 +] +}, +{ +"tb": 232, +"tbk": 1, +"tl": 164, +"mb": 232, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +767, +768, +769, +770, +771, +772, +773, +130, +131, +132, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 1317, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +332, +333, +334, +335, +336, +199, +200, +201, +202, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +74 +] +}, +{ +"tb": 1104, +"tbk": 2, +"tl": 183, +"mb": 736, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1388, +1389, +1390, +1391, +1392, +1393, +1394, +1395, +1396, +1397, +1398, +1195, +1196, +26 +] +}, +{ +"tb": 704, +"tbk": 11, +"tl": 491, +"mb": 704, +"mbk": 11, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +2348, +2349, +2350, +2351, +2352, +2353, +2354, +322, +323, +324, +325, +326, +327, +328, +13, +14, +15, +16, +17, +18, +64 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 18, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +986, +987, +988, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 192, +"tbk": 4, +"tl": 576, +"mb": 96, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1746, +1747, +1748, +1749, +1750, +716, +717, +718, +719, +720, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 2, +"tl": 350, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +1245, +1246, +554, +555, +556, +198, +576, +577, +578, +579, +580, +581 +] +}, +{ +"tb": 400, +"tbk": 1, +"tl": 75600610, +"mb": 400, +"mbk": 1, +"gb": 400, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +879, +880, +881, +882, +883, +884, +61, +62, +63, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 311, +"tbk": 1, +"tl": 43, +"mb": 311, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +960, +961, +962, +963, +964, +965, +966, +967, +61, +62, +63, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 391, +"mb": 72, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +575, +547, +548, +191, +576, +577, +578, +579, +580, +581, +198, +776, +777, +778, +576, +577, +578, +579, +580, +581, +198 +] +}, +{ +"tb": 2, +"tbk": 1, +"tl": 44, +"mb": 2, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +299, +300, +301, +302, +303, +304, +305, +306, +307, +308, +309, +310, +311, +312, +130, +131, +132, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 610, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1386, +1387, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25 +] +}, +{ +"tb": 896, +"tbk": 3, +"tl": 75570520, +"mb": 512, +"mbk": 1, +"gb": 512, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +683, +684, +685, +686, +687, +688, +689, +690, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +942, +391 +] +}, +{ +"tb": 960, +"tbk": 30, +"tl": 8936, +"mb": 192, +"mbk": 6, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +541, +542, +543, +544, +545, +1595, +1596, +1597, +549, +550, +551, +552, +553, +554, +555, +556, +198 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 578, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +332, +333, +334, +335, +336, +199, +200, +201, +202, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +298 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 10, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1167, +1168, +1169, +1170, +11, +12, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 424, +"tbk": 1, +"tl": 75571196, +"mb": 424, +"mbk": 1, +"gb": 424, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +750, +751, +752, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +390, +391 +] +}, +{ +"tb": 1244, +"tbk": 1, +"tl": 111, +"mb": 1244, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +767, +768, +769, +770, +771, +772, +773, +61, +62, +63, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 11, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +582, +583, +584, +585, +586, +130, +131, +132, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 252, +"tbk": 1, +"tl": 77, +"mb": 252, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +1103, +1104, +1105, +1106, +1107, +1108, +1109, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 560, +"tbk": 7, +"tl": 317, +"mb": 160, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +932, +933, +934, +935, +1598, +1599, +762, +763, +764, +765, +766, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 480, +"tbk": 2, +"tl": 411, +"mb": 320, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1825, +1826, +1827, +1992, +1993, +1994, +1995, +1996, +1997, +1998, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 192, +"tbk": 6, +"tl": 1891, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +541, +542, +543, +544, +545, +546, +547, +548, +556, +198, +576, +577, +578, +579, +580, +581, +549, +550, +551, +552, +553 +] +}, +{ +"tb": 96, +"tbk": 2, +"tl": 4502, +"mb": 96, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +857, +858, +859, +860, +762, +763, +764, +765, +766, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 27, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1731, +1732, +1733, +1734, +1735, +1736, +1737, +1738, +1739, +1740, +1741, +1742, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 77515646, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +2668, +2669, +2670, +2671, +2672, +2673, +2674, +2675, +2676, +2677, +2678, +2679, +1195, +1196, +26 +] +}, +{ +"tb": 40, +"tbk": 1, +"tl": 75588739, +"mb": 40, +"mbk": 1, +"gb": 40, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1118, +1119, +1120, +1121, +1122, +1123, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 18, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1999, +2000, +2001, +2002, +2003, +2004, +2005, +2006, +2007, +322, +323, +324, +325, +326, +327, +328, +13, +14, +15, +16, +17, +18, +298 +] +}, +{ +"tb": 40, +"tbk": 1, +"tl": 75599496, +"mb": 40, +"mbk": 1, +"gb": 40, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1118, +1119, +1120, +1121, +1122, +1123, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75570154, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +1357, +1358, +1359, +1360, +1361, +1362, +1363, +1364, +1365, +1366, +1367, +1368, +1369, +457, +458, +604, +605, +606, +607, +608, +753, +391, +609, +610, +611, +612, +24, +25 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 28, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1610, +1611, +1612, +1613, +1614, +1615, +130, +131, +132, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 176, +"tbk": 2, +"tl": 1094, +"mb": 88, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +575, +547, +548, +549, +550, +551, +552, +553, +554, +555, +556, +198, +576, +577, +578, +579, +580, +581, +198 +] +}, +{ +"tb": 240, +"tbk": 3, +"tl": 229, +"mb": 240, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +932, +933, +934, +935, +1598, +1599, +762, +763, +764, +765, +766, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 240, +"tbk": 10, +"tl": 2122134, +"mb": 24, +"mbk": 1, +"gb": 24, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +2680, +2681, +2682, +1883, +1217, +225, +226, +227, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 84, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +1606, +1607, +1608, +1609, +61, +62, +63, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 30732, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1943, +1944, +1945, +1240, +1241, +1242, +1243, +1244, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 30676, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +1137, +1138, +1139, +1140, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 2, +"tl": 37, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +174, +175, +176, +177, +178, +179, +180, +181, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 10, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +582, +583, +584, +585, +586, +130, +131, +132, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 144, +"tbk": 3, +"tl": 8892, +"mb": 144, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +857, +858, +859, +860, +762, +763, +764, +765, +766, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 1334, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1173, +1174, +1175, +1176, +1177, +1178, +762, +763, +764, +765, +766, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 424, +"tbk": 1, +"tl": 19, +"mb": 424, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +57, +58, +59, +60, +61, +62, +63, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23 +] +}, +{ +"tb": 576, +"tbk": 2, +"tl": 202, +"mb": 384, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +946, +947, +948, +1760, +1761, +1762, +1763, +1764, +1765, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 261, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +19 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +474, +475, +476, +477, +478, +479, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 192, +"tbk": 4, +"tl": 0, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1515, +1516, +1517, +1518, +1519, +176, +177, +178, +179, +180, +181, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 12, +"tl": 4587, +"mb": 48, +"mbk": 6, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +1766, +1595, +1596, +1597, +556, +576, +577, +578, +579, +580, +581, +834, +835, +836, +837, +838, +554, +555, +556 +] +}, +{ +"tb": 1920, +"tbk": 3, +"tl": 0, +"mb": 640, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1637, +1638, +1639, +1640, +1641, +1642, +1643, +423, +424, +425, +426, +427, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 128, +"tbk": 3, +"tl": 4384, +"mb": 96, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +1794, +1795, +1796, +1797, +1798, +1799, +1800, +1801, +1802, +1803, +1804, +1805, +1806, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 10, +"mb": 160, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1295, +1296, +1297, +1298, +1299, +1300, +1301, +1302, +1303, +1304, +1305, +1306, +1307, +1308, +1309, +1310, +1311, +1312, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 30669, +"mb": 72, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +699, +700, +701, +702, +1600, +1601, +1602, +1603, +1604, +1605, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 32768200, +"tbk": 150, +"tl": 18357442, +"mb": 2457616, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2683, +2684, +2685, +2686, +2687, +2688, +2689, +2690, +2691, +2692, +2693, +2694, +2695, +2696, +2697, +390, +391, +609, +610, +611, +612, +24, +25, +26 +] +}, +{ +"tb": 108, +"tbk": 1, +"tl": 72902716, +"mb": 108, +"mbk": 1, +"gb": 108, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1088, +1089, +1090, +1091, +1092, +1093, +1094, +1095, +1096, +1097, +1098, +1099, +1100, +1101, +1102, +448, +1399, +1400, +1401, +1402, +1403, +1404, +1405, +1406, +457, +458, +459, +460, +461, +462, +463, +464, +465, +223 +] +}, +{ +"tb": 1568, +"tbk": 3, +"tl": 165, +"mb": 896, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +791, +1534, +1535, +1536, +1537, +1538, +1539, +1540, +268, +269, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 1, +"tbk": 1, +"tl": 51, +"mb": 1, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2698, +2699, +2700, +2701, +2702, +2703, +2704, +2705, +640, +641, +642, +643, +644, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 918, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +103, +104 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 18, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1847, +1848, +1849, +1850, +1851, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92 +] +}, +{ +"tb": 768, +"tbk": 4, +"tl": 10976, +"mb": 768, +"mbk": 4, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +1561, +1562, +1563, +937, +762, +763, +764, +765, +766, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 386, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +2336, +2337, +2338, +2339, +2340, +2341, +2342, +2343, +2344, +2345, +2346, +2347, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 192, +"tbk": 6, +"tl": 1190, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +541, +542, +543, +544, +545, +546, +547, +548, +556, +198, +576, +577, +578, +579, +580, +581, +834, +835, +836, +837, +838 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 0, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +105, +106, +107, +108, +109, +110, +111, +112, +113, +1852, +1853, +1854, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75587365, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1520, +1521, +1522, +1523, +1524, +1525, +1526, +1527, +1528, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 8, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +2552, +2553, +2554, +2555, +2556, +2557, +2558, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 128, +"tbk": 3, +"tl": 4482, +"mb": 96, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +1794, +1795, +1796, +1797, +1798, +1799, +1800, +1801, +1802, +1803, +1804, +1805, +1806, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 240, +"tbk": 3, +"tl": 0, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +105, +106, +107, +108, +109, +110, +111, +112, +113, +114, +115, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 77514929, +"mb": 48, +"mbk": 1, +"gb": 48, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +2706, +2707, +2708, +2709, +2710, +2711, +2712, +2713, +2714, +2715, +2716, +2717, +2718, +2719, +2720, +2721, +2722, +2723, +2724, +2725, +1027, +1028, +1029 +] +}, +{ +"tb": 36, +"tbk": 1, +"tl": 128, +"mb": 36, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +767, +768, +769, +770, +771, +772, +773, +130, +131, +132, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 256, +"tbk": 2, +"tl": 21, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2726, +2727, +2728, +2729, +2730, +2731, +2732, +2733, +2734, +2735, +2736, +2737, +2738, +2735, +2739, +2740, +2741, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 75572235, +"mb": 96, +"mbk": 1, +"gb": 96, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1218, +1219, +1220, +1221, +1222, +1223, +1224, +130, +131, +132, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 75573756, +"mb": 72, +"mbk": 1, +"gb": 72, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +278, +279, +280, +281, +282, +283, +284, +285, +286, +287, +288, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 30449, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +1794, +1795, +1796, +1797, +1798, +1799, +1800, +1801, +1802, +1803, +1804, +1805, +1806, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 7830, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1943, +1944, +1945, +2742, +2743, +2744, +2745, +2746, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 2698, +"mb": 72, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +575, +547, +548, +191, +192, +193, +194, +195, +196, +197, +198, +198, +199, +200, +201, +202, +128, +129 +] +}, +{ +"tb": 2000, +"tbk": 1, +"tl": 75581190, +"mb": 2000, +"mbk": 1, +"gb": 2000, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1259, +1260, +1261, +1262, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 16000, +"tbk": 1, +"tl": 166, +"mb": 16000, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1956, +1957, +1958, +1959, +1960, +1961, +1962, +1963, +1964, +1965, +1966, +556, +828, +829, +830, +831, +832, +833, +199, +200, +201, +202, +128, +129, +61, +62, +63, +13, +14, +15, +16, +17, +18, +298 +] +}, +{ +"tb": 240, +"tbk": 2, +"tl": 9, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2229, +2230, +110, +111, +112, +113, +114, +115, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 239, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1610, +1611, +1612, +1613, +1620, +1436, +1424, +1425, +1426, +1427, +1428, +1429, +1430, +1431, +1432, +1433, +1434, +1435, +1436, +1437, +1438, +1439, +1440, +1441, +1442, +1443, +1444, +1445, +1446, +1447, +1448, +1449, +1450, +1451, +13, +14, +15, +16, +17, +18, +526, +527 +] +}, +{ +"tb": 9, +"tbk": 2, +"tl": 180, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +1573, +1574, +1577, +1578, +1579, +1580, +1581, +1582, +2639, +2640, +2641, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 128, +"tbk": 1, +"tl": 31, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +989, +990, +991, +992, +993, +994, +995, +2747, +2748, +2749, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 224, +"tbk": 1, +"tl": 2754, +"mb": 224, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +2750, +2751, +2752, +2753, +2754, +2755, +2756, +2757, +1750, +716, +717, +718, +719, +720, +16, +17, +18, +103, +104, +90, +91, +92 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 284, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2543, +2544, +2545, +2546, +2547, +138, +139, +140, +141, +142, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 2, +"tl": 59, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +1606, +1607, +1608, +1609, +130, +131, +132, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 176, +"tbk": 1, +"tl": 75573180, +"mb": 176, +"mbk": 1, +"gb": 176, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1936, +1937, +1938, +1939, +1940, +1941, +1942, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 2, +"tl": 47, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +1606, +1607, +1608, +1609, +61, +62, +63, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 252, +"tbk": 1, +"tl": 23, +"mb": 252, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +57, +58, +59, +60, +130, +131, +132, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 1472, +"tbk": 23, +"tl": 2248, +"mb": 1472, +"mbk": 23, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +2348, +2349, +2350, +2351, +2352, +2353, +2354, +322, +323, +324, +325, +326, +327, +328, +13, +14, +15, +16, +17, +18, +103, +104 +] +}, +{ +"tb": 960, +"tbk": 30, +"tl": 13343, +"mb": 192, +"mbk": 6, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +541, +542, +543, +544, +545, +1595, +1596, +1597, +556, +198, +576, +577, +578, +579, +580, +581, +549, +550, +551, +552, +553 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 27, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1610, +1611, +1612, +1613, +1614, +1615, +130, +131, +132, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 424, +"tbk": 1, +"tl": 75571205, +"mb": 424, +"mbk": 1, +"gb": 424, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +750, +751, +752, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +390, +391 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 160, +"mb": 160, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1825, +1826, +1827, +1992, +1993, +1994, +1995, +1996, +1997, +1998, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 11, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +582, +583, +584, +585, +586, +130, +131, +132, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 560, +"tbk": 7, +"tl": 320, +"mb": 160, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +932, +933, +934, +935, +1598, +1599, +762, +763, +764, +765, +766, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 10, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +596, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +753 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 92, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +955, +956, +957, +958, +959, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23 +] +}, +{ +"tb": 212, +"tbk": 1, +"tl": 76, +"mb": 212, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +1103, +1104, +1105, +1106, +1107, +1108, +1109, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 75599688, +"mb": 96, +"mbk": 1, +"gb": 96, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1218, +1219, +1220, +1221, +1222, +1223, +1224, +61, +62, +63, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 208, +"tbk": 3, +"tl": 75581906, +"mb": 128, +"mbk": 1, +"gb": 128, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +998, +999, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 288, +"tbk": 2, +"tl": 15634, +"mb": 288, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +557, +558, +559, +560, +561, +562, +563, +564, +565, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 38, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1167, +1168, +1169, +1170, +11, +12, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 2, +"tl": 35, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1999, +2000, +2001, +2002, +2003, +2004, +2005, +2006, +2007, +322, +323, +324, +325, +326, +327, +328, +13, +14, +15, +16, +17, +18, +116 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 75570371, +"mb": 160, +"mbk": 1, +"gb": 160, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +938, +939, +940, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +941, +391 +] +}, +{ +"tb": 24, +"tbk": 3, +"tl": 232547081, +"mb": 24, +"mbk": 3, +"gb": 24, +"gbk": 3, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +620, +621, +622, +623, +624, +625, +626, +627, +628, +2758, +2759, +26 +] +}, +{ +"tb": 240, +"tbk": 2, +"tl": 10, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2229, +2230, +110, +111, +112, +113, +1852, +1853, +1854, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 448, +"tbk": 6, +"tl": 519, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +2656, +2657, +2658, +2659, +2660, +1595, +1596, +1597, +556, +576, +577, +578, +579, +580, +581, +834, +835, +836, +837, +838, +554, +555 +] +}, +{ +"tb": 640, +"tbk": 11, +"tl": 3222, +"mb": 288, +"mbk": 5, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +2656, +2657, +2658, +2659, +2660, +1595, +1596, +1597, +556, +576, +577, +578, +579, +580, +581, +198, +198 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 77516565, +"mb": 96, +"mbk": 1, +"gb": 96, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +2760, +2761, +2762, +2763, +2764, +2765, +2766, +2767, +2768, +2769, +2770 +] +}, +{ +"tb": 144, +"tbk": 1, +"tl": 1606, +"mb": 144, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +557, +558, +559, +560, +561, +562, +563, +564, +565, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 29, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1, +2, +3, +4, +5, +6, +7, +8, +9, +10, +11, +12, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 82, +"tbk": 7, +"tl": 319, +"mb": 34, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +721, +722, +723, +724, +725, +726, +727, +728, +729, +730, +138, +139, +140, +141, +142, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75598907, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1520, +1521, +1522, +1523, +1524, +1525, +1526, +1527, +1528, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +474, +475, +1482, +1483, +1484, +1485, +13, +14, +15, +16, +17, +18, +143, +144 +] +}, +{ +"tb": 192, +"tbk": 6, +"tl": 449, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +541, +542, +543, +544, +545, +546, +547, +548, +556, +576, +577, +578, +579, +580, +581, +834, +835, +836, +837, +838, +554, +555 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 175, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +332, +333, +334, +335, +336, +199, +200, +201, +202, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +143, +144 +] +}, +{ +"tb": 300, +"tbk": 1, +"tl": 18, +"mb": 300, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +57, +58, +59, +60, +61, +62, +63, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 75581377, +"mb": 96, +"mbk": 1, +"gb": 96, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1218, +1219, +1220, +1221, +1222, +1223, +1224, +61, +62, +63, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 1398020, +"tbk": 200030, +"tl": 1875352, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2771, +2772, +2773, +2774, +2775, +2776, +2777, +2778, +2779, +2780, +2781, +223, +224, +225, +226, +227, +24, +25, +26 +] +}, +{ +"tb": 896, +"tbk": 3, +"tl": 75569970, +"mb": 512, +"mbk": 1, +"gb": 512, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +683, +684, +685, +686, +687, +688, +689, +690, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +753, +391 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 75570071, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1542, +1543, +1544, +1545, +1546, +1547, +1548, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +753, +391 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1903, +1904, +1905, +1906, +1907, +1908, +1909, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92 +] +}, +{ +"tb": 84, +"tbk": 1, +"tl": 142, +"mb": 84, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +767, +768, +769, +770, +771, +772, +773, +130, +131, +132, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 480, +"tbk": 6, +"tl": 0, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1263, +1264, +1265, +1266, +1323, +937, +762, +763, +764, +765, +766, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 1984, +"tbk": 5, +"tl": 1745, +"mb": 1024, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +2661, +2662, +2663, +716, +717, +718, +719, +720, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 0, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +2336, +2337, +2338, +2626, +2627, +2628, +2629, +2630, +2631, +2632, +1833, +1834, +1835, +1836, +1837, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 2, +"tl": 514, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +828, +829, +830, +831, +832, +833, +549, +550, +551, +552, +553, +554, +555, +839, +840, +841, +842, +843, +844, +199, +200, +201, +202 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 144, +"mb": 160, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +767, +768, +769, +770, +771, +772, +773, +130, +131, +132, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 1352, +"tbk": 1, +"tl": 72902906, +"mb": 1352, +"mbk": 1, +"gb": 1352, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +938, +939, +940, +449, +450, +451, +452, +453, +454, +455, +456, +457, +458, +459, +460, +461, +462, +463, +464, +465, +223 +] +}, +{ +"tb": 960, +"tbk": 30, +"tl": 9122, +"mb": 192, +"mbk": 6, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +541, +542, +543, +544, +545, +1595, +1596, +1597, +556, +198, +576, +577, +578, +579, +580, +581, +834, +835, +836, +837, +838 +] +}, +{ +"tb": 132, +"tbk": 4, +"tl": 302325327, +"mb": 132, +"mbk": 4, +"gb": 132, +"gbk": 4, +"eb": 0, +"ebk": 0, +"fs": [ +869, +870, +871, +872, +873, +874, +875, +876, +877, +878, +61, +62, +63, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 240, +"tbk": 3, +"tl": 8434, +"mb": 240, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +932, +933, +934, +935, +936, +937, +762, +763, +764, +765, +766, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 18, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1847, +1848, +1849, +1850, +1851, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 2630, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +1766, +546, +547, +548, +556, +198, +576, +577, +578, +579, +580, +581, +198, +199, +200, +201, +202 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +474, +475, +1482, +1483, +1484, +1485, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 75599921, +"mb": 16, +"mbk": 1, +"gb": 16, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +998, +999, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 3436, +"mb": 72, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +699, +700, +701, +702, +703, +704, +705, +706, +707, +708, +709, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 448, +"tbk": 6, +"tl": 1960, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +2656, +2657, +2658, +2659, +2660, +1595, +1596, +1597, +556, +198, +576, +577, +578, +579, +580, +581, +549, +550, +551, +552, +553 +] +}, +{ +"tb": 105, +"tbk": 2, +"tl": 95, +"mb": 70, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +1573, +1574, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576, +1577, +1578, +1579, +1580, +1581, +1582, +1656, +1657, +1658 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 178, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +120, +121, +122, +123, +124, +125, +126, +127, +128, +129, +61, +62, +63, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23 +] +}, +{ +"tb": 672, +"tbk": 3, +"tl": 35, +"mb": 384, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +313, +314, +315, +316, +317, +318, +319, +320, +321, +322, +323, +324, +325, +326, +327, +328, +13, +14, +15, +16, +17, +18, +64 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1049, +1050, +1051, +1052, +1053, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92 +] +}, +{ +"tb": 80, +"tbk": 2, +"tl": 75579845, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +998, +999, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 121, +"tbk": 10, +"tl": 775109009, +"mb": 121, +"mbk": 10, +"gb": 121, +"gbk": 10, +"eb": 0, +"ebk": 0, +"fs": [ +47, +2098, +2099, +2100, +2101, +2102, +2103, +2104, +2782, +2783, +2784, +2785, +2786, +2787, +2788, +2789, +2790, +2791, +2792, +2787, +2116, +2117, +2118, +2119, +2120, +2121, +2122, +2123, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 1303, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +64 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +474, +475, +476, +477, +478, +479, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 1708, +"tbk": 30, +"tl": 225, +"mb": 112, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +255, +256, +257, +258, +259, +260, +261, +262, +263, +264, +265, +351, +352, +503, +504, +505, +506, +507, +508, +509, +510, +511, +512, +513, +514, +515, +516, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 544, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +120, +121, +122, +123, +124, +125, +126, +127, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25 +] +}, +{ +"tb": 32, +"tbk": 2, +"tl": 4922, +"mb": 32, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1943, +1944, +1945, +1240, +1241, +1242, +1243, +1244, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 41, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1610, +1611, +1612, +1613, +1614, +1615, +130, +131, +132, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75570392, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1274, +1275, +1276, +1277, +1278, +1279, +1280, +1281, +1282, +1283, +1284, +1285, +1286, +1287, +1288, +1289, +377, +378, +379, +380, +381, +382, +383, +384, +385, +386, +387, +388, +389, +942, +391 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 10, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1290, +1291, +1292, +1293, +1294, +176, +177, +178, +179, +180, +181, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 112, +"tbk": 2, +"tl": 61494, +"mb": 112, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1348, +1349, +1350, +1351, +1352, +1353, +1354, +1355, +1356, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 75570215, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1542, +1543, +1544, +1545, +1546, +1547, +1548, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +941, +391 +] +}, +{ +"tb": 384, +"tbk": 2, +"tl": 3978, +"mb": 384, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +1561, +1562, +1563, +937, +762, +763, +764, +765, +766, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 3968, +"tbk": 5, +"tl": 201, +"mb": 2048, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +93, +94, +95, +96, +97, +98, +99, +100, +101, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +116 +] +}, +{ +"tb": 49, +"tbk": 1, +"tl": 2001, +"mb": 49, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +145, +146, +147, +148, +149, +150, +151, +152, +153, +154, +155, +156, +157, +158, +159, +160, +161, +162, +163, +164, +165, +166, +167, +168, +169, +170, +171, +172, +173, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 288, +"tbk": 1, +"tl": 857, +"mb": 288, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +1549, +1550, +1551, +1552, +1553, +1554, +1555, +629, +630, +631, +26 +] +}, +{ +"tb": 4, +"tbk": 1, +"tl": 75585205, +"mb": 4, +"mbk": 1, +"gb": 4, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1030, +1031, +1032, +1033, +1034, +1035, +1036, +1037, +1038, +1039, +1040, +61, +62, +63, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 4488, +"tbk": 6, +"tl": 75594048, +"mb": 1536, +"mbk": 1, +"gb": 1512, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1179, +1180, +1181, +1182, +1183, +1184, +1185, +1186, +130, +131, +132, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 10048, +"tbk": 257, +"tl": 19432124927, +"mb": 10048, +"mbk": 257, +"gb": 10048, +"gbk": 257, +"eb": 0, +"ebk": 0, +"fs": [ +528, +529, +530, +531, +532, +533, +534, +535, +536, +537, +130, +131, +132, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 352, +"tbk": 3, +"tl": 59, +"mb": 224, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +174, +175, +176, +177, +178, +179, +180, +181, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 191, +"tbk": 30, +"tl": 5620438, +"mb": 20, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +337, +338, +339, +340, +341, +342, +343, +344, +345, +346, +347, +348, +349, +350, +266, +267, +503, +504, +505, +506, +507, +508, +509, +510, +511, +512, +513, +514, +515, +516, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 30, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1290, +1291, +1292, +1293, +1294, +176, +177, +178, +179, +180, +181, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 112, +"tbk": 3, +"tl": 28, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +1972, +1973, +1974, +1975, +1976, +1977, +1978, +1979, +1980, +1981, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 38, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1167, +1168, +1169, +1170, +11, +12, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 248, +"tbk": 5, +"tl": 283, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +481, +482, +483, +484, +485, +486, +487, +488, +489, +490, +491, +492, +493, +494, +495, +496, +497, +498, +499, +500, +501, +502, +268, +269, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 512, +"tbk": 1, +"tl": 75599514, +"mb": 512, +"mbk": 1, +"gb": 512, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1225, +1226, +1227, +1228, +1229, +1230, +1231, +1232, +1233, +1234, +1235, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 75588764, +"mb": 16, +"mbk": 1, +"gb": 16, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1197, +1198, +1199, +1200, +1201, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 2354, +"mb": 72, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +699, +700, +701, +702, +1600, +1601, +1602, +1603, +1604, +1605, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 184, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +120, +121, +122, +123, +124, +125, +126, +127, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92 +] +}, +{ +"tb": 512, +"tbk": 1, +"tl": 75571827, +"mb": 512, +"mbk": 1, +"gb": 512, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1225, +1226, +1227, +1228, +1229, +1230, +1231, +1232, +1233, +1234, +1235, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 4176, +"tbk": 6, +"tl": 75589366, +"mb": 1536, +"mbk": 1, +"gb": 1200, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1179, +1180, +1181, +1182, +1183, +1184, +1185, +1186, +130, +131, +132, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92 +] +}, +{ +"tb": 228, +"tbk": 1, +"tl": 28, +"mb": 228, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +57, +58, +59, +60, +130, +131, +132, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23 +] +}, +{ +"tb": 32, +"tbk": 2, +"tl": 4800, +"mb": 32, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1943, +1944, +1945, +1240, +1241, +1242, +1243, +1244, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 1765, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +75, +76, +77, +78, +79, +80, +81, +82, +83, +84, +85, +86, +87, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 308, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1370, +1371, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75570549, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +596, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +942, +391, +609, +610, +611, +612 +] +}, +{ +"tb": 85, +"tbk": 29, +"tl": 9848, +"mb": 85, +"mbk": 29, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +228, +229, +230, +231, +232, +233, +234, +235, +236, +237, +238, +239, +240, +241, +242, +243, +244, +2793, +2794, +2795, +2796, +2797, +2798, +2799, +250, +251, +252, +253, +254, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +474, +475, +1482, +1483, +1484, +1485, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 64, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +289, +290, +291, +292, +293, +294, +295, +296, +297, +130, +131, +132, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 561, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +861, +862, +863, +864, +865, +866, +867, +868, +556, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2548, +2549, +2550, +2551, +1054, +1055, +1171, +1172, +1054, +1055, +642, +643, +644, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 2000, +"tbk": 1, +"tl": 75579302, +"mb": 2000, +"mbk": 1, +"gb": 2000, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1259, +1260, +1261, +1262, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 384, +"tbk": 5, +"tl": 14295, +"mb": 320, +"mbk": 4, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +2235, +2236, +2237, +2238, +2239, +2240, +2241, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75571550, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +596, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +698, +391, +609, +610, +611, +612 +] +}, +{ +"tb": 448, +"tbk": 6, +"tl": 1260, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +2656, +2657, +2658, +2659, +2660, +1595, +1596, +1597, +556, +198, +576, +577, +578, +579, +580, +581, +834, +835, +836, +837, +838 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 2405, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1565, +1566, +1567, +561, +562, +563, +564, +565, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 197, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2060, +2061, +2062, +1750, +716, +717, +718, +719, +720, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 319, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +120, +121, +122, +123, +124, +125, +126, +127, +128, +129, +61, +62, +63, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 105, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2060, +2061, +2062, +1750, +716, +717, +718, +719, +720, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 568, +"tbk": 71, +"tl": 1131, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1061, +1062, +1063, +1064, +191, +192, +193, +194, +195, +196, +197, +198, +198, +199, +200, +201, +202, +128, +129, +130, +131, +132, +13, +14, +15 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 8028, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +2194, +2195, +2196, +2197, +2198, +2199, +2200, +2201, +2202, +172, +173, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 144, +"tbk": 1, +"tl": 75570136, +"mb": 144, +"mbk": 1, +"gb": 144, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +938, +939, +940, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +753, +391 +] +}, +{ +"tb": 144, +"tbk": 1, +"tl": 75570145, +"mb": 144, +"mbk": 1, +"gb": 144, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +938, +939, +940, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +753, +391 +] +}, +{ +"tb": 4, +"tbk": 1, +"tl": 75599947, +"mb": 4, +"mbk": 1, +"gb": 4, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1030, +1031, +1032, +1033, +1034, +1035, +1036, +1037, +1038, +1039, +1040, +130, +131, +132, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 2, +"tl": 3416, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2023, +2024, +2025, +705, +706, +707, +708, +709, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 168, +"tbk": 3, +"tl": 5046, +"mb": 168, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1348, +1349, +1350, +1351, +1352, +1353, +1354, +1355, +1356, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 312, +"tbk": 1, +"tl": 32, +"mb": 312, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +57, +58, +59, +60, +61, +62, +63, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92 +] +}, +{ +"tb": 168, +"tbk": 1, +"tl": 22, +"mb": 168, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2800, +2801, +2802, +2803, +2804, +2805, +2806, +2807, +2808, +2809, +2810, +1505, +1506, +2811, +2812, +2813, +2814, +2815, +2816, +2817, +2818, +2819, +2327, +2328, +2820, +2821, +2822, +2823, +2824, +2825, +2826 +] +}, +{ +"tb": 120, +"tbk": 1, +"tl": 1978, +"mb": 120, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1045, +1046, +1047, +1048, +716, +717, +718, +719, +720, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 568, +"tbk": 71, +"tl": 1232, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1061, +1062, +1063, +1064, +191, +576, +577, +578, +579, +580, +581, +198, +776, +777, +778, +576, +577, +578, +579, +580, +581, +198, +198, +199, +200, +201, +202 +] +}, +{ +"tb": 96, +"tbk": 2, +"tl": 61, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2827, +2828, +2829, +2830, +2831, +2832, +2449, +2450, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576 +] +}, +{ +"tb": 16000, +"tbk": 1, +"tl": 145, +"mb": 16000, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1956, +1957, +1958, +1959, +1960, +1961, +1962, +1963, +1964, +1965, +1966, +556, +828, +829, +830, +831, +832, +833, +199, +200, +201, +202, +128, +129, +61, +62, +63, +13, +14, +15, +16, +17, +18, +208, +209, +210 +] +}, +{ +"tb": 640, +"tbk": 1, +"tl": 0, +"mb": 640, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1637, +1638, +1639, +1640, +1641, +1642, +1643, +423, +424, +425, +426, +427, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 0, +"mb": 160, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1825, +1826, +1827, +1828, +1829, +1830, +1831, +1832, +1833, +1834, +1835, +1836, +1837, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 2, +"tbk": 1, +"tl": 39, +"mb": 2, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +299, +300, +301, +302, +303, +304, +305, +306, +307, +308, +309, +310, +311, +312, +61, +62, +63, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 3, +"tbk": 1, +"tl": 77515630, +"mb": 3, +"mbk": 1, +"gb": 3, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +228, +229, +230, +231, +232, +233, +234, +235, +236, +237, +238, +239, +240, +241, +242, +243, +244, +1065, +1066, +1067, +1068, +1069, +1070, +1071, +1072, +1195, +1196, +26 +] +}, +{ +"tb": 256, +"tbk": 8, +"tl": 999, +"mb": 64, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +541, +542, +543, +544, +545, +546, +547, +548, +556, +576, +577, +578, +579, +580, +581, +198, +198 +] +}, +{ +"tb": 5504, +"tbk": 20, +"tl": 2952, +"mb": 3328, +"mbk": 9, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +791, +792, +793, +794, +795, +796, +797, +266, +267, +731, +732, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 144, +"tbk": 1, +"tl": 77, +"mb": 144, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +428, +429, +430, +431, +432, +433, +434, +435, +436, +437, +438, +439, +440, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +474, +475, +476, +477, +478, +479, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 1463, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +1561, +1562, +1563, +937, +762, +763, +764, +765, +766, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 19, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +986, +987, +988, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 1798170, +"tbk": 200030, +"tl": 159117601276, +"mb": 197817, +"mbk": 20003, +"gb": 197817, +"gbk": 20003, +"eb": 0, +"ebk": 0, +"fs": [ +2833, +2834, +2835, +2836, +2837, +2838, +2839, +2840, +2841, +2842, +2843, +2844, +2845, +2846, +2845, +2847, +2848, +2849, +2850, +2851, +2852, +2853, +2854, +2855, +2856, +2857, +2858, +2859, +2860, +2861, +2862, +2863, +2864, +2865, +1883, +1217, +225, +226, +227, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 75581896, +"mb": 96, +"mbk": 1, +"gb": 96, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1218, +1219, +1220, +1221, +1222, +1223, +1224, +130, +131, +132, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 81, +"tbk": 10, +"tl": 775103944, +"mb": 81, +"mbk": 10, +"gb": 81, +"gbk": 10, +"eb": 0, +"ebk": 0, +"fs": [ +47, +2098, +2099, +2100, +2866, +2867, +2868, +2869, +2870, +2871, +2866, +2872, +2873, +2874, +2875, +2876, +2866, +2116, +2117, +2118, +2119, +2120, +2121, +2122, +2123, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 91, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +955, +956, +957, +958, +959, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 87, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +1757, +1758, +1759, +762, +763, +764, +765, +766, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 896, +"tbk": 1, +"tl": 124, +"mb": 896, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +710, +711, +712, +713, +714, +715, +716, +717, +718, +719, +720, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 36, +"tbk": 1, +"tl": 2754, +"mb": 36, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +145, +146, +147, +148, +149, +150, +151, +152, +153, +154, +155, +156, +157, +158, +159, +160, +161, +162, +163, +164, +165, +166, +167, +168, +169, +170, +171, +172, +173, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1903, +1904, +1905, +1906, +1907, +1908, +1909, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23 +] +}, +{ +"tb": 211, +"tbk": 10, +"tl": 1, +"mb": 22, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +337, +338, +339, +340, +341, +342, +343, +344, +345, +346, +347, +348, +349, +350, +351, +352, +503, +504, +505, +506, +507, +508, +509, +510, +511, +512, +513, +514, +515, +516, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 29, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1610, +1611, +1612, +1613, +1614, +1615, +61, +62, +63, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 76, +"tbk": 1, +"tl": 60, +"mb": 76, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +1103, +1104, +1105, +1106, +1107, +1108, +1109, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 1280, +"tbk": 2, +"tl": 2584, +"mb": 1280, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1637, +1638, +1639, +1640, +1641, +1642, +1643, +423, +424, +425, +426, +427, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 2, +"tbk": 1, +"tl": 37, +"mb": 2, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +299, +300, +301, +302, +303, +304, +305, +306, +307, +308, +309, +310, +311, +312, +61, +62, +63, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 75569980, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1542, +1543, +1544, +1545, +1546, +1547, +1548, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +753, +391 +] +}, +{ +"tb": 21, +"tbk": 9, +"tl": 616, +"mb": 10, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +721, +722, +723, +724, +725, +726, +727, +728, +729, +730, +138, +139, +140, +141, +142, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 15, +"tbk": 1, +"tl": 77515170, +"mb": 15, +"mbk": 1, +"gb": 15, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +2877, +2878, +2879, +2880, +2881, +2882, +2883, +2884, +2885, +2886, +2887, +2888, +2889, +2890, +2891, +2892, +2893, +2894, +2895, +2896, +2897, +2898, +2899, +2900, +2901, +2902, +26 +] +}, +{ +"tb": 108, +"tbk": 1, +"tl": 75570061, +"mb": 108, +"mbk": 1, +"gb": 108, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1088, +1089, +1090, +1091, +1092, +1093, +1094, +1095, +1096, +1097, +1098, +1099, +1100, +1101, +1102, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +753, +391 +] +}, +{ +"tb": 76, +"tbk": 1, +"tl": 31, +"mb": 76, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +57, +58, +59, +60, +130, +131, +132, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23 +] +}, +{ +"tb": 240, +"tbk": 3, +"tl": 0, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1263, +1264, +1265, +1266, +1267, +761, +762, +763, +764, +765, +766, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 2, +"tbk": 1, +"tl": 39, +"mb": 2, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +299, +300, +301, +302, +303, +304, +305, +306, +307, +308, +309, +310, +311, +312, +61, +62, +63, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 40, +"tbk": 1, +"tl": 75571810, +"mb": 40, +"mbk": 1, +"gb": 40, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1118, +1119, +1120, +1121, +1122, +1123, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 104, +"tbk": 1, +"tl": 10, +"mb": 104, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1295, +1296, +1297, +1298, +1299, +1300, +1301, +1302, +1303, +1304, +1305, +1306, +1307, +1308, +1309, +1310, +1311, +1312, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 10813520, +"tbk": 10, +"tl": 2019105, +"mb": 1081352, +"mbk": 1, +"gb": 1081352, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +2903, +2904, +2905, +2906, +2907, +2908, +2909, +2910, +2911, +2912, +1215, +1216, +1217, +225, +226, +227, +24, +25, +26 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 3296, +"mb": 72, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1529, +1530, +1531, +1532, +1533, +561, +562, +563, +564, +565, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 2, +"tl": 60955, +"mb": 96, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +857, +858, +859, +860, +762, +763, +764, +765, +766, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 3968, +"tbk": 5, +"tl": 128, +"mb": 2048, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +93, +94, +95, +96, +97, +98, +99, +100, +101, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +298 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 1642, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +1137, +1138, +1139, +1140, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 40, +"tbk": 2, +"tl": 75612680, +"mb": 32, +"mbk": 1, +"gb": 8, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +845, +846, +847, +848, +849, +850, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92 +] +}, +{ +"tb": 240, +"tbk": 10, +"tl": 2122056, +"mb": 24, +"mbk": 1, +"gb": 24, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +2913, +2914, +2915, +1883, +1217, +225, +226, +227, +24, +25, +26 +] +}, +{ +"tb": 40, +"tbk": 5, +"tl": 2518, +"mb": 40, +"mbk": 5, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +620, +621, +622, +623, +624, +625, +626, +627, +628, +1556, +1557, +1558, +1559, +1560, +26 +] +}, +{ +"tb": 135, +"tbk": 2, +"tl": 14, +"mb": 90, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +2916, +2917, +2918, +2919, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 40, +"tbk": 2, +"tl": 263, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1061, +1062, +1063, +1064, +556, +576, +577, +578, +579, +580, +581, +198, +199, +200, +201, +202, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18 +] +}, +{ +"tb": 162, +"tbk": 2, +"tl": 518, +"mb": 108, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +2920, +2921, +2922, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 55, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +1606, +1607, +1608, +1609, +130, +131, +132, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 144, +"tbk": 1, +"tl": 2397, +"mb": 144, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +557, +558, +559, +560, +561, +562, +563, +564, +565, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 120, +"tbk": 2, +"tl": 75574528, +"mb": 96, +"mbk": 1, +"gb": 24, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +613, +614, +615, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23 +] +}, +{ +"tb": 168, +"tbk": 2, +"tl": 151148962, +"mb": 168, +"mbk": 2, +"gb": 168, +"gbk": 2, +"eb": 0, +"ebk": 0, +"fs": [ +528, +529, +530, +531, +532, +533, +534, +535, +536, +537, +130, +131, +132, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +474, +475, +476, +477, +478, +479, +13, +14, +15, +16, +17, +18, +526, +527 +] +}, +{ +"tb": 6, +"tbk": 1, +"tl": 28, +"mb": 6, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +977, +978, +979, +980, +981, +982, +983, +984, +985, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 66, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +1606, +1607, +1608, +1609, +130, +131, +132, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 13, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +582, +583, +584, +585, +586, +61, +62, +63, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 448, +"tbk": 6, +"tl": 1311, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +2656, +2657, +2658, +2659, +2660, +1595, +1596, +1597, +549, +550, +551, +552, +553, +554, +555, +556, +198 +] +}, +{ +"tb": 400, +"tbk": 5, +"tl": 0, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +105, +106, +107, +108, +109, +110, +111, +112, +113, +114, +115, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 291, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2060, +2061, +2062, +1750, +716, +717, +718, +719, +720, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 188, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1370, +1371, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92 +] +}, +{ +"tb": 108, +"tbk": 1, +"tl": 75570429, +"mb": 108, +"mbk": 1, +"gb": 108, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1088, +1089, +1090, +1091, +1092, +1093, +1094, +1095, +1096, +1097, +1098, +1099, +1100, +1101, +1102, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +942, +391 +] +}, +{ +"tb": 512, +"tbk": 4, +"tl": 4764, +"mb": 320, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +2235, +2236, +2237, +2238, +2239, +2240, +2241, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 71, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +1606, +1607, +1608, +1609, +61, +62, +63, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +474, +475, +1482, +1483, +1484, +1485, +13, +14, +15, +16, +17, +18, +103, +104 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 3824, +"mb": 160, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1255, +1256, +1257, +1258, +937, +762, +763, +764, +765, +766, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 836, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +2194, +2195, +2196, +2197, +2198, +2199, +2200, +2201, +2202, +172, +173, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 31848, +"tbk": 9, +"tl": 75592048, +"mb": 12288, +"mbk": 1, +"gb": 7368, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1179, +1180, +1181, +1182, +1183, +1184, +1185, +1186, +61, +62, +63, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 4, +"tbk": 1, +"tl": 75600722, +"mb": 4, +"mbk": 1, +"gb": 4, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1030, +1031, +1032, +1033, +1034, +1035, +1036, +1037, +1038, +1039, +1040, +61, +62, +63, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 77514947, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +2171, +2172, +2173, +2174, +2175, +2923, +2924, +2925, +2926, +2927, +2928, +2929, +2719, +2720, +2721, +2722, +2723, +2724, +2725, +1027, +1028, +1029 +] +}, +{ +"tb": 28, +"tbk": 1, +"tl": 94, +"mb": 28, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +767, +768, +769, +770, +771, +772, +773, +61, +62, +63, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1583, +1584, +1585, +1586, +1587, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92 +] +}, +{ +"tb": 12, +"tbk": 1, +"tl": 75581846, +"mb": 12, +"mbk": 1, +"gb": 12, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +869, +870, +871, +872, +873, +874, +875, +876, +877, +878, +130, +131, +132, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 2798940, +"tbk": 100000, +"tl": 7650889609548, +"mb": 2798940, +"mbk": 100000, +"gb": 2798940, +"gbk": 100000, +"eb": 0, +"ebk": 0, +"fs": [ +2930, +2931, +2932, +2933, +2934, +2935, +2936, +2937, +2938, +2939, +2940, +2941, +2942, +2943, +504, +505, +506, +507, +508, +509, +510, +511, +512, +513, +514, +515, +516, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 28, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1610, +1611, +1612, +1613, +1614, +1615, +61, +62, +63, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 624, +"tbk": 3, +"tl": 56, +"mb": 384, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2229, +2230, +110, +111, +112, +113, +114, +115, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 9, +"tbk": 2, +"tl": 153, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +1573, +1574, +1577, +1578, +1579, +1580, +1581, +1582, +1656, +1657, +1658, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 5896, +"tbk": 1, +"tl": 72902785, +"mb": 5896, +"mbk": 1, +"gb": 5896, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +750, +751, +752, +1399, +1400, +1401, +1402, +1403, +1404, +1405, +1406, +457, +458, +459, +460, +461, +462, +463, +464, +465, +223 +] +}, +{ +"tb": 37, +"tbk": 2, +"tl": 155033163, +"mb": 37, +"mbk": 2, +"gb": 37, +"gbk": 2, +"eb": 0, +"ebk": 0, +"fs": [ +2944, +2945, +2946, +2947, +2948, +2949, +2950, +2951, +2952, +2953, +2954, +1991 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 1295, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +120, +121, +122, +123, +124, +125, +126, +127, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23 +] +}, +{ +"tb": 96, +"tbk": 3, +"tl": 54, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +986, +987, +988, +748, +749, +746, +747, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 9, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1167, +1168, +1169, +1170, +11, +12, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 2, +"tl": 416, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +1766, +546, +547, +548, +556, +576, +577, +578, +579, +580, +581, +834, +835, +836, +837, +838, +554, +555, +556 +] +}, +{ +"tb": 624, +"tbk": 3, +"tl": 9, +"mb": 384, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2229, +2230, +110, +111, +112, +113, +114, +115, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 5896, +"tbk": 1, +"tl": 72902804, +"mb": 5896, +"mbk": 1, +"gb": 5896, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +938, +939, +940, +1399, +1400, +1401, +1402, +1403, +1404, +1405, +1406, +457, +458, +459, +460, +461, +462, +463, +464, +465, +223 +] +}, +{ +"tb": 128, +"tbk": 1, +"tl": 99, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +989, +990, +991, +992, +993, +994, +995, +996, +997, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +474, +475, +476, +477, +478, +479, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 312, +"tbk": 1, +"tl": 2973, +"mb": 312, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +575, +547, +548, +191, +198, +192, +193, +194, +195, +196, +197, +198, +199, +200, +201, +202, +128, +129 +] +}, +{ +"tb": 896, +"tbk": 1, +"tl": 397, +"mb": 896, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +710, +711, +712, +713, +714, +715, +716, +717, +718, +719, +720, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 144, +"tbk": 1, +"tl": 10, +"mb": 144, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1295, +1296, +1297, +1298, +1299, +1300, +1301, +1302, +1303, +1304, +1305, +1306, +1307, +1308, +1309, +1310, +1311, +1312, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 960, +"tbk": 2, +"tl": 354, +"mb": 640, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +27, +28, +29, +30, +31, +32, +33, +34, +35, +36, +34, +37, +34, +38, +39, +2955, +2956, +2957, +914, +915, +916, +917, +918, +919, +920, +921, +922, +923, +924, +925, +926, +927, +928, +929, +930, +931, +26 +] +}, +{ +"tb": 4024, +"tbk": 8, +"tl": 232542504, +"mb": 3184, +"mbk": 2, +"gb": 2400, +"gbk": 3, +"eb": 2400, +"ebk": 3, +"fs": [ +1767, +1768, +1769, +1770, +1771, +1772, +1773, +1774, +1775, +1776, +1777, +1778, +2958, +2959, +2960, +2961, +2962, +2963, +2964, +2965, +2962, +2963, +2966, +2967, +2968, +2969, +2970, +2971, +2972, +898, +899, +900, +901, +902, +903, +904, +905, +906, +907, +908, +909, +910, +911, +912, +913, +914, +915, +916, +917, +918, +919, +920 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 4785, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +526, +527 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 28, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1610, +1611, +1612, +1613, +1614, +1615, +61, +62, +63, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 512, +"tbk": 4, +"tl": 5143, +"mb": 320, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +2235, +2236, +2237, +2238, +2239, +2240, +2241, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 29, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1610, +1611, +1612, +1613, +1614, +1615, +61, +62, +63, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 37, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1167, +1168, +1169, +1170, +11, +12, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 4231491, +"tbk": 200039, +"tl": 9550689781, +"mb": 300060, +"mbk": 10001, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +1659, +1660, +1661, +1662, +1663, +1664, +1665, +1666, +1667, +1668, +1669, +1670, +2973, +2974, +2975, +2976, +2977, +2978, +2979, +2980, +2981, +2978, +2982, +2983, +2984, +1575, +1576, +1575, +1576, +1577, +1578, +1579, +1580, +1581, +1582, +2411, +2412, +504, +505, +506, +507, +508, +509, +510, +511, +512, +513, +514, +515, +516, +270 +] +}, +{ +"tb": 10, +"tbk": 1, +"tl": 1762, +"mb": 10, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +145, +146, +147, +148, +149, +150, +151, +152, +153, +154, +155, +156, +157, +158, +159, +160, +161, +162, +163, +164, +165, +166, +167, +168, +169, +170, +171, +172, +173, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1110, +1111, +1112, +1113, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 38, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2507, +2508, +2509, +2510, +642, +643, +644, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 224, +"tbk": 1, +"tl": 29, +"mb": 224, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +57, +58, +59, +60, +130, +131, +132, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25 +] +}, +{ +"tb": 4, +"tbk": 1, +"tl": 75599697, +"mb": 4, +"mbk": 1, +"gb": 4, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1030, +1031, +1032, +1033, +1034, +1035, +1036, +1037, +1038, +1039, +1040, +61, +62, +63, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 8064, +"tbk": 6, +"tl": 154, +"mb": 4096, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +93, +94, +95, +96, +97, +98, +99, +100, +101, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +116 +] +}, +{ +"tb": 424, +"tbk": 1, +"tl": 29, +"mb": 424, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +57, +58, +59, +60, +61, +62, +63, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23 +] +}, +{ +"tb": 512, +"tbk": 1, +"tl": 75584989, +"mb": 512, +"mbk": 1, +"gb": 512, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1225, +1226, +1227, +1228, +1229, +1230, +1231, +1232, +1233, +1234, +1235, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 86016, +"tbk": 8, +"tl": 75589231, +"mb": 32768, +"mbk": 1, +"gb": 20992, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +733, +734, +735, +736, +737, +738, +739, +740, +741, +742, +743, +744, +745, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 168, +"tbk": 1, +"tl": 77514972, +"mb": 168, +"mbk": 1, +"gb": 168, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +2800, +2801, +2802, +2803, +2985, +2986, +2987, +26 +] +}, +{ +"tb": 135, +"tbk": 2, +"tl": 44, +"mb": 90, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +2916, +2917, +2988, +1421, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 1696, +"tbk": 26, +"tl": 15146, +"mb": 1024, +"mbk": 12, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +2656, +2657, +2658, +2659, +2660, +1595, +1596, +1597, +191, +576, +577, +578, +579, +580, +581, +198, +776, +777, +778 +] +}, +{ +"tb": 37, +"tbk": 1, +"tl": 3806, +"mb": 37, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +145, +146, +147, +148, +149, +150, +151, +152, +153, +154, +155, +156, +157, +158, +159, +160, +161, +162, +163, +164, +165, +166, +167, +168, +169, +170, +171, +172, +173, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 7, +"tbk": 1, +"tl": 38, +"mb": 7, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +960, +961, +962, +963, +964, +965, +966, +967, +61, +62, +63, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 17, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +2552, +2553, +2554, +2555, +2556, +2557, +2558, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 10, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +582, +583, +584, +585, +586, +61, +62, +63, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 5600, +"tbk": 175, +"tl": 646935, +"mb": 1920, +"mbk": 60, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +541, +542, +543, +544, +545, +1595, +1596, +1597, +191, +198, +192, +193, +194, +195, +196, +197, +198 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 75591410, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +278, +279, +280, +281, +282, +283, +284, +285, +286, +287, +288, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 1280, +"tbk": 2, +"tl": 2519, +"mb": 1280, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1637, +1638, +1639, +1640, +1641, +1642, +1643, +423, +424, +425, +426, +427, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 8688, +"tbk": 7, +"tl": 75585088, +"mb": 3072, +"mbk": 1, +"gb": 2640, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1179, +1180, +1181, +1182, +1183, +1184, +1185, +1186, +61, +62, +63, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 7441, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +1041, +1042, +1043, +1044, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 58, +"tbk": 1, +"tl": 39, +"mb": 58, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +960, +961, +962, +963, +964, +965, +966, +967, +130, +131, +132, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 480, +"tbk": 2, +"tl": 9, +"mb": 320, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1825, +1826, +1827, +1828, +1829, +1830, +1831, +1832, +1833, +1834, +1835, +1836, +1837, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 384, +"tbk": 3, +"tl": 10472, +"mb": 384, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1236, +1237, +1238, +1239, +1240, +1241, +1242, +1243, +1244, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 6, +"tl": 25, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1000, +1001, +1002, +1003, +1004, +556, +828, +829, +830, +831, +832, +833, +834, +835, +836, +837, +838, +554, +555, +839, +840, +841, +842, +843, +844, +199, +200, +201, +202, +128, +129 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +474, +475, +476, +477, +478, +479, +13, +14, +15, +16, +17, +18, +103, +104 +] +}, +{ +"tb": 5896, +"tbk": 1, +"tl": 19, +"mb": 5896, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +57, +58, +59, +60, +61, +62, +63, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92 +] +}, +{ +"tb": 141, +"tbk": 10, +"tl": 1010413, +"mb": 15, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2436, +2437, +2438, +2439, +2440, +2441, +2442, +2443, +2444, +2445, +2446, +2447, +2448, +2449, +2450, +1575, +1576, +1575, +1576, +1577, +1578, +1579, +1580, +1581, +1582, +2411, +2412, +504, +505, +506, +507, +508, +509, +510, +511, +512, +513, +514, +515, +516, +270, +271, +272 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 2414, +"mb": 72, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +699, +700, +701, +702, +1202, +561, +562, +563, +564, +565, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 16000, +"tbk": 1, +"tl": 307, +"mb": 16000, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1956, +1957, +1958, +1959, +1960, +1961, +1962, +1963, +1964, +1965, +1966, +556, +828, +829, +830, +831, +832, +833, +199, +200, +201, +202, +128, +129, +61, +62, +63, +13, +14, +15, +16, +17, +18, +103, +104 +] +}, +{ +"tb": 3968, +"tbk": 5, +"tl": 75570904, +"mb": 2048, +"mbk": 1, +"gb": 2048, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +683, +684, +685, +686, +687, +688, +689, +690, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +390, +391 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +474, +475, +1482, +1483, +1484, +1485, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 7, +"tbk": 1, +"tl": 75575463, +"mb": 7, +"mbk": 1, +"gb": 7, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +654, +655, +656, +657, +658, +659, +660, +661, +662, +663, +664, +665, +666, +667, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 316, +"tbk": 1, +"tl": 75570288, +"mb": 316, +"mbk": 1, +"gb": 316, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +938, +939, +940, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +941, +391 +] +}, +{ +"tb": 57, +"tbk": 2, +"tl": 139, +"mb": 38, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +1573, +1574, +1575, +1576, +1575, +1576, +1575, +1576, +1577, +1578, +1579, +1580, +1581, +1582, +2639, +2640, +2641, +270, +271, +272 +] +}, +{ +"tb": 400, +"tbk": 1, +"tl": 75577100, +"mb": 400, +"mbk": 1, +"gb": 400, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +879, +880, +881, +882, +883, +884, +130, +131, +132, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 228, +"tbk": 1, +"tl": 65, +"mb": 228, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +1103, +1104, +1105, +1106, +1107, +1108, +1109, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 2296, +"mb": 72, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +699, +700, +701, +702, +1600, +1601, +1602, +1603, +1604, +1605, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 56, +"tbk": 1, +"tl": 7917, +"mb": 56, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1348, +1349, +1350, +1351, +1352, +1353, +1354, +1355, +1356, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 480, +"tbk": 2, +"tl": 395, +"mb": 320, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1825, +1826, +1827, +1992, +1993, +1994, +1995, +1996, +1997, +1998, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 40, +"tbk": 1, +"tl": 75591555, +"mb": 40, +"mbk": 1, +"gb": 40, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1118, +1119, +1120, +1121, +1122, +1123, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1903, +1904, +1905, +1906, +1907, +1908, +1909, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 10, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +582, +583, +584, +585, +586, +61, +62, +63, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 1352, +"tbk": 1, +"tl": 72902887, +"mb": 1352, +"mbk": 1, +"gb": 1352, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +750, +751, +752, +449, +450, +451, +452, +453, +454, +455, +456, +457, +458, +459, +460, +461, +462, +463, +464, +465, +223 +] +}, +{ +"tb": 512, +"tbk": 1, +"tl": 75573901, +"mb": 512, +"mbk": 1, +"gb": 512, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1225, +1226, +1227, +1228, +1229, +1230, +1231, +1232, +1233, +1234, +1235, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 11, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +582, +583, +584, +585, +586, +130, +131, +132, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2548, +2549, +2550, +2551, +748, +749, +1171, +1172, +1114, +1115, +1116, +1117, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 1448, +"tbk": 1, +"tl": 75599507, +"mb": 1448, +"mbk": 1, +"gb": 1448, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1268, +1269, +1270, +1271, +1272, +1273, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75600103, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1520, +1521, +1522, +1523, +1524, +1525, +1526, +1527, +1528, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +474, +475, +1482, +1483, +1484, +1485, +13, +14, +15, +16, +17, +18, +64 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 1286, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +332, +333, +334, +335, +336, +199, +200, +201, +202, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +64 +] +}, +{ +"tb": 240, +"tbk": 2, +"tl": 75572244, +"mb": 192, +"mbk": 1, +"gb": 48, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +851, +852, +853, +854, +855, +856, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25 +] +}, +{ +"tb": 20, +"tbk": 1, +"tl": 28, +"mb": 20, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +57, +58, +59, +60, +61, +62, +63, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92 +] +}, +{ +"tb": 557, +"tbk": 2, +"tl": 77514787, +"mb": 512, +"mbk": 1, +"gb": 45, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +2989, +2990, +2991, +2992, +2993, +2994, +2995, +2996, +2997, +2998, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 0, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2999, +3000, +3001, +914, +915, +916, +917, +918, +919, +920, +921, +922, +923, +924, +925, +926, +927, +928, +929, +930, +931, +26 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 20324, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +861, +862, +863, +864, +865, +866, +867, +868, +556, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 75612670, +"mb": 96, +"mbk": 1, +"gb": 96, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1218, +1219, +1220, +1221, +1222, +1223, +1224, +130, +131, +132, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 6, +"tl": 509, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1061, +1062, +1063, +1064, +556, +198, +576, +577, +578, +579, +580, +581, +549, +550, +551, +552, +553, +554, +555, +198, +576, +577, +578, +579, +580, +581, +198 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 36, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +3002, +3003, +3004, +762, +763, +764, +765, +766, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 2, +"tbk": 1, +"tl": 38, +"mb": 2, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +299, +300, +301, +302, +303, +304, +305, +306, +307, +308, +309, +310, +311, +312, +130, +131, +132, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 8, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +582, +583, +584, +585, +586, +61, +62, +63, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 1600242, +"tbk": 200030, +"tl": 3822849, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +1313, +1314, +3005, +3006, +3007, +3008, +3009, +3010, +3011, +3012, +3013, +223, +224, +225, +226, +227, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 19, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +203, +204, +205, +206, +207, +110, +111, +112, +113, +114, +115, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 3996340, +"tbk": 400060, +"tl": 529944970328, +"mb": 435634, +"mbk": 40006, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +3014, +3015, +3016, +3017, +3018, +3019, +3020, +3021, +3022, +3023, +3024, +3025, +3026, +3027, +390, +391, +609, +610, +611, +612, +24, +25, +26 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 135, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2300, +2301, +2302, +2303, +1750, +716, +717, +718, +719, +720, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 232, +"tbk": 1, +"tl": 130, +"mb": 232, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +767, +768, +769, +770, +771, +772, +773, +130, +131, +132, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 1448, +"tbk": 1, +"tl": 75584984, +"mb": 1448, +"mbk": 1, +"gb": 1448, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1268, +1269, +1270, +1271, +1272, +1273, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 18, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1847, +1848, +1849, +1850, +1851, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25 +] +}, +{ +"tb": 96, +"tbk": 2, +"tl": 60899, +"mb": 96, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1616, +1617, +1618, +1619, +762, +763, +764, +765, +766, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 440, +"tbk": 1, +"tl": 75571494, +"mb": 440, +"mbk": 1, +"gb": 440, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +750, +751, +752, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +698, +391 +] +}, +{ +"tb": 40, +"tbk": 1, +"tl": 38, +"mb": 40, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +960, +961, +962, +963, +964, +965, +966, +967, +130, +131, +132, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 4191, +"mb": 160, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +779, +780, +781, +782, +783, +784, +762, +763, +764, +765, +766, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 75575625, +"mb": 80, +"mbk": 1, +"gb": 80, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1588, +1589, +1590, +1591, +1592, +1593, +1594, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 0, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1263, +1264, +1265, +1266, +1267, +761, +762, +763, +764, +765, +766, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 1228, +"tbk": 1, +"tl": 19, +"mb": 1228, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +57, +58, +59, +60, +61, +62, +63, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 16009600, +"tbk": 100020, +"tl": 132462259532, +"mb": 1600480, +"mbk": 10000, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +3028, +3029, +3030, +3031, +3032, +3033, +390, +391, +609, +610, +611, +612, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 34, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1, +2, +3, +4, +5, +6, +7, +8, +9, +10, +11, +12, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 75573201, +"mb": 80, +"mbk": 1, +"gb": 80, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +65, +66, +67, +68, +69, +70, +71, +72, +73, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 8000000, +"tbk": 100000, +"tl": 9850428, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2586, +2587, +2588, +2589, +2590, +2591, +2592, +2593, +2594, +2595, +2596, +2597, +390, +391, +609, +610, +611, +612, +24, +25, +26 +] +}, +{ +"tb": 48, +"tbk": 3, +"tl": 10418, +"mb": 48, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1565, +1566, +1567, +561, +562, +563, +564, +565, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32000, +"tbk": 2, +"tl": 612, +"mb": 16000, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1956, +1957, +1958, +1959, +1960, +1961, +1962, +1963, +1964, +1965, +1966, +556, +828, +829, +830, +831, +832, +833, +549, +550, +551, +552, +553, +554, +555, +839, +840, +841, +842, +843, +844, +199, +200, +201, +202, +128, +129, +61, +62, +63 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +596, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +942 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 3261, +"mb": 72, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +699, +700, +701, +702, +1600, +1601, +1602, +1603, +1604, +1605, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 128, +"tbk": 1, +"tl": 758, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1236, +1237, +1238, +1239, +1946, +1947, +1948, +1949, +1950, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 400, +"tbk": 1, +"tl": 75599829, +"mb": 400, +"mbk": 1, +"gb": 400, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +879, +880, +881, +882, +883, +884, +130, +131, +132, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 28, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +3002, +3003, +3004, +762, +763, +764, +765, +766, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 341, +"tbk": 1, +"tl": 42, +"mb": 341, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +960, +961, +962, +963, +964, +965, +966, +967, +130, +131, +132, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 1853, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +1041, +1042, +1043, +1044, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 20971450, +"tbk": 190, +"tl": 68535, +"mb": 1048576, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +3034, +3035, +3036, +3037, +3038, +3039, +3040, +3041, +3042, +1217, +225, +226, +227, +24, +25, +26 +] +}, +{ +"tb": 77, +"tbk": 3, +"tl": 515, +"mb": 46, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +2451, +2452, +3043, +3044, +3045, +3046, +3047, +3048, +3049, +3050, +3051, +3052, +3053, +3054, +3055, +3056, +3057, +3058, +3059, +3060, +3061, +921, +922, +923, +924, +925, +926, +927, +928, +929, +930, +931, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 19, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +986, +987, +988, +1054, +1055, +642, +643, +644, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 168, +"tbk": 1, +"tl": 1324, +"mb": 168, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2800, +2801, +2802, +2803, +3062, +3063, +3064, +3065, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 18, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +359, +360, +361, +362, +363, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 66, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +1606, +1607, +1608, +1609, +130, +131, +132, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 40, +"tbk": 2, +"tl": 75581905, +"mb": 32, +"mbk": 1, +"gb": 8, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +845, +846, +847, +848, +849, +850, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 75573186, +"mb": 80, +"mbk": 1, +"gb": 80, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1588, +1589, +1590, +1591, +1592, +1593, +1594, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 49487280, +"tbk": 100000, +"tl": 14918147, +"mb": 519, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +2185, +2186, +2187, +2188, +2189, +2190, +2191, +3066, +3067, +609, +610, +611, +612, +24, +25, +26 +] +}, +{ +"tb": 512, +"tbk": 1, +"tl": 75600429, +"mb": 512, +"mbk": 1, +"gb": 512, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1225, +1226, +1227, +1228, +1229, +1230, +1231, +1232, +1233, +1234, +1235, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 19, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +359, +360, +361, +362, +363, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 72902745, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +596, +448, +1399, +1400, +1401, +1402, +1403, +1404, +1405, +1406, +457, +458, +459, +460, +461, +462, +463, +464, +465, +223, +224 +] +}, +{ +"tb": 192, +"tbk": 4, +"tl": 11352, +"mb": 192, +"mbk": 4, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1616, +1617, +1618, +1619, +762, +763, +764, +765, +766, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 252, +"tbk": 1, +"tl": 32, +"mb": 252, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +57, +58, +59, +60, +130, +131, +132, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 448, +"tbk": 3, +"tl": 75571044, +"mb": 256, +"mbk": 1, +"gb": 256, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1542, +1543, +1544, +1545, +1546, +1547, +1548, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +390, +391 +] +}, +{ +"tb": 300, +"tbk": 1, +"tl": 75570052, +"mb": 300, +"mbk": 1, +"gb": 300, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +938, +939, +940, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +753, +391 +] +}, +{ +"tb": 560, +"tbk": 15, +"tl": 9855, +"mb": 128, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +824, +825, +826, +827, +556, +828, +829, +830, +831, +832, +833, +199, +200, +201, +202, +128, +129, +61, +62, +63 +] +}, +{ +"tb": 120, +"tbk": 2, +"tl": 75577196, +"mb": 96, +"mbk": 1, +"gb": 24, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +613, +614, +615, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23 +] +}, +{ +"tb": 192, +"tbk": 3, +"tl": 49, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +2552, +2553, +2554, +2555, +2556, +2557, +2558, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 528, +"tbk": 3, +"tl": 20, +"mb": 448, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +174, +175, +176, +177, +178, +179, +180, +181, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 200, +"tbk": 1, +"tl": 19, +"mb": 200, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +57, +58, +59, +60, +130, +131, +132, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92 +] +}, +{ +"tb": 320, +"tbk": 1, +"tl": 483, +"mb": 320, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +27, +28, +29, +30, +31, +32, +33, +34, +35, +36, +34, +37, +34, +38, +39, +3068, +3069, +3070, +921, +922, +923, +924, +925, +926, +927, +928, +929, +930, +931, +26 +] +}, +{ +"tb": 332, +"tbk": 1, +"tl": 104, +"mb": 332, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +767, +768, +769, +770, +771, +772, +773, +61, +62, +63, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +2271, +2272, +2491, +2492, +2493, +2494, +2495, +2496, +2497, +2498, +2499, +2500, +761, +762, +763, +764, +765, +766, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 76, +"tbk": 1, +"tl": 75570585, +"mb": 76, +"mbk": 1, +"gb": 76, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +750, +751, +752, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +942, +391 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 126, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2297, +2298, +2299, +1750, +716, +717, +718, +719, +720, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 25, +"tbk": 3, +"tl": 6319, +"mb": 25, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1339, +1340, +1341, +1342, +1343, +1344, +1345, +1346, +1347, +937, +762, +763, +764, +765, +766, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 216, +"tbk": 1, +"tl": 30750, +"mb": 216, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1187, +1188, +1189, +1190, +1191, +1192, +1193, +1194, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 1, +"tbk": 1, +"tl": 73, +"mb": 1, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +721, +722, +723, +724, +725, +726, +727, +728, +729, +730, +138, +139, +140, +141, +142, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 288, +"tbk": 1, +"tl": 77515704, +"mb": 288, +"mbk": 1, +"gb": 288, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +1549, +1550, +1551, +1552, +1553, +1554, +1555, +2758, +2759, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 0, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +2242, +2243, +2244, +561, +562, +563, +564, +565, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 568, +"tbk": 1, +"tl": 248, +"mb": 568, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2373, +2374, +2375, +2376, +2377, +2378, +2379, +2380, +2381, +2382, +2383, +2384, +1436, +1424, +1425, +1426, +1427, +1428, +1429, +1430, +1431, +1432, +1433, +1434, +1435, +1436, +1437, +1438, +1439, +1440, +1441, +1442, +1443, +1444, +1445, +1446, +1447, +1448, +1449, +1450, +1451, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 22784, +"tbk": 7, +"tl": 75574308, +"mb": 8192, +"mbk": 1, +"gb": 6656, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +733, +734, +735, +736, +737, +738, +739, +740, +741, +742, +743, +744, +745, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 96, +"tbk": 2, +"tl": 189, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1746, +1747, +1748, +1749, +1750, +716, +717, +718, +719, +720, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 2002, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +1041, +1042, +1043, +1044, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 1448, +"tbk": 1, +"tl": 75573896, +"mb": 1448, +"mbk": 1, +"gb": 1448, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1268, +1269, +1270, +1271, +1272, +1273, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 164, +"tbk": 1, +"tl": 11, +"mb": 164, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1295, +1296, +1297, +1298, +1299, +1300, +1301, +1302, +1303, +1304, +1305, +1306, +1307, +1308, +1309, +1310, +1311, +1312, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 400, +"tbk": 1, +"tl": 75588848, +"mb": 400, +"mbk": 1, +"gb": 400, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +879, +880, +881, +882, +883, +884, +61, +62, +63, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 448, +"tbk": 6, +"tl": 515, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +2656, +2657, +2658, +2659, +2660, +1595, +1596, +1597, +556, +198, +576, +577, +578, +579, +580, +581, +1568, +1569, +1570, +1571, +1572 +] +}, +{ +"tb": 7200000, +"tbk": 100000, +"tl": 531413356848, +"mb": 720000, +"mbk": 10000, +"gb": 720000, +"gbk": 10000, +"eb": 0, +"ebk": 0, +"fs": [ +3071, +3072, +3073, +3074, +3075, +3076, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 77515729, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +2171, +2172, +2173, +2174, +2175, +3077, +3078, +3079, +3080, +3081, +3082, +3083, +3084, +26 +] +}, +{ +"tb": 212, +"tbk": 1, +"tl": 75571296, +"mb": 212, +"mbk": 1, +"gb": 212, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +750, +751, +752, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +390, +391 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1903, +1904, +1905, +1906, +1907, +1908, +1909, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 1344, +"tbk": 3, +"tl": 674, +"mb": 768, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +946, +947, +948, +1760, +1761, +1762, +1763, +1764, +1765, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 58, +"tbk": 1, +"tl": 40, +"mb": 58, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +960, +961, +962, +963, +964, +965, +966, +967, +130, +131, +132, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 1440, +"tbk": 7, +"tl": 11, +"mb": 320, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +3085, +3086, +3087, +3088, +3089, +3090, +3091, +3092, +3093, +3094, +3095, +907, +908, +909, +910, +911, +912, +913, +914, +915, +916, +917, +918, +919, +920, +921, +922, +923, +924, +925, +926, +927, +928, +929, +930, +931, +26 +] +}, +{ +"tb": 56, +"tbk": 1, +"tl": 75584786, +"mb": 56, +"mbk": 1, +"gb": 56, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +278, +279, +280, +281, +282, +283, +284, +285, +286, +287, +288, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 42, +"tbk": 3, +"tl": 165, +"mb": 24, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +1573, +1574, +1575, +1576, +1577, +1578, +1579, +1580, +1581, +1582, +2639, +2640, +2641, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 336, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +861, +862, +863, +864, +865, +866, +867, +868, +556, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 1390, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +1561, +1562, +1563, +937, +762, +763, +764, +765, +766, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 1342, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1616, +1617, +1618, +1619, +762, +763, +764, +765, +766, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 212, +"tbk": 1, +"tl": 75571305, +"mb": 212, +"mbk": 1, +"gb": 212, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +938, +939, +940, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +390, +391 +] +}, +{ +"tb": 1448, +"tbk": 1, +"tl": 75579282, +"mb": 1448, +"mbk": 1, +"gb": 1448, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1268, +1269, +1270, +1271, +1272, +1273, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 2389, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +1137, +1138, +1139, +1140, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 42, +"tbk": 3, +"tl": 141, +"mb": 24, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +1573, +1574, +1575, +1576, +1577, +1578, +1579, +1580, +1581, +1582, +1656, +1657, +1658, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 77515128, +"mb": 48, +"mbk": 1, +"gb": 48, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +3096, +3097, +3098, +3099, +3100, +3101, +3102, +3103, +3104, +26 +] +}, +{ +"tb": 300, +"tbk": 1, +"tl": 75570034, +"mb": 300, +"mbk": 1, +"gb": 300, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +750, +751, +752, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +753, +391 +] +}, +{ +"tb": 96, +"tbk": 3, +"tl": 54, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +986, +987, +988, +748, +749, +746, +747, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23 +] +}, +{ +"tb": 24, +"tbk": 2, +"tl": 75609893, +"mb": 16, +"mbk": 1, +"gb": 8, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +517, +518, +519, +520, +521, +522, +523, +524, +525, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 4248, +"tbk": 6, +"tl": 75581797, +"mb": 1536, +"mbk": 1, +"gb": 1272, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1179, +1180, +1181, +1182, +1183, +1184, +1185, +1186, +130, +131, +132, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 11, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +582, +583, +584, +585, +586, +130, +131, +132, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 1, +"tbk": 1, +"tl": 7582, +"mb": 1, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1339, +1340, +1341, +1342, +1343, +1344, +1345, +1346, +1347, +937, +762, +763, +764, +765, +766, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 400, +"tbk": 1, +"tl": 75581788, +"mb": 400, +"mbk": 1, +"gb": 400, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +879, +880, +881, +882, +883, +884, +130, +131, +132, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 6, +"tl": 527, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1061, +1062, +1063, +1064, +556, +576, +577, +578, +579, +580, +581, +834, +835, +836, +837, +838, +554, +555, +556, +198, +576, +577, +578, +579, +580, +581, +198 +] +}, +{ +"tb": 256, +"tbk": 2, +"tl": 1400, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +182, +183, +184, +185, +186, +187, +188, +189, +190, +556, +576, +577, +578, +579, +580, +581, +198, +198, +199, +200, +201, +202 +] +}, +{ +"tb": 1896, +"tbk": 5, +"tl": 75579758, +"mb": 768, +"mbk": 1, +"gb": 456, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1179, +1180, +1181, +1182, +1183, +1184, +1185, +1186, +130, +131, +132, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 310, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1370, +1371, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 56, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +1606, +1607, +1608, +1609, +61, +62, +63, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75570168, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1274, +1275, +1276, +1277, +1278, +1279, +1280, +1281, +1282, +1283, +1284, +1285, +1286, +1287, +1288, +1289, +377, +378, +379, +380, +381, +382, +383, +384, +385, +386, +387, +388, +389, +941, +391 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 65, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +289, +290, +291, +292, +293, +294, +295, +296, +297, +130, +131, +132, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 3, +"tbk": 1, +"tl": 77515658, +"mb": 3, +"mbk": 1, +"gb": 3, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +228, +229, +230, +231, +232, +233, +234, +235, +236, +237, +238, +239, +240, +241, +242, +243, +244, +1838, +1839, +1840, +1841, +1842, +1843, +1195, +1196, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 242, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1386, +1387, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 18, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1847, +1848, +1849, +1850, +1851, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 2008, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +2194, +2195, +2196, +2197, +2198, +2199, +2200, +2201, +2202, +172, +173, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 200, +"tbk": 1, +"tl": 63, +"mb": 200, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +1103, +1104, +1105, +1106, +1107, +1108, +1109, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 1344, +"tbk": 3, +"tl": 196, +"mb": 768, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +946, +947, +948, +3105, +3106, +3107, +3108, +3109, +3110, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 192, +"tbk": 2, +"tl": 556, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +678, +679, +680, +681, +682, +199, +200, +201, +202, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +74 +] +}, +{ +"tb": 96, +"tbk": 2, +"tl": 4122, +"mb": 96, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +857, +858, +859, +860, +762, +763, +764, +765, +766, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 76, +"tbk": 1, +"tl": 75570603, +"mb": 76, +"mbk": 1, +"gb": 76, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +938, +939, +940, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +942, +391 +] +}, +{ +"tb": 216, +"tbk": 1, +"tl": 2458, +"mb": 216, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1187, +1188, +1189, +1190, +1191, +1192, +1193, +1194, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 18, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +986, +987, +988, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 320, +"tbk": 4, +"tl": 10857, +"mb": 320, +"mbk": 4, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1255, +1256, +1257, +1258, +937, +762, +763, +764, +765, +766, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 40, +"tbk": 2, +"tl": 75589478, +"mb": 32, +"mbk": 1, +"gb": 8, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +845, +846, +847, +848, +849, +850, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 337, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +861, +862, +863, +864, +865, +866, +867, +868, +556, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 66, +"tbk": 2, +"tl": 127, +"mb": 44, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +1573, +1574, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576, +1577, +1578, +1579, +1580, +1581, +1582, +2639, +2640, +2641, +270 +] +}, +{ +"tb": 640000, +"tbk": 2, +"tl": 1444, +"mb": 320000, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2465, +2466, +2467, +2468, +2469, +2470, +2471, +2472, +2473, +2474, +189, +190, +556, +576, +577, +578, +579, +580, +581, +198, +198, +199, +200, +201, +202, +128, +129 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 28, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1610, +1611, +1612, +1613, +1614, +1615, +130, +131, +132, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 1352, +"tbk": 1, +"tl": 145, +"mb": 1352, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +428, +429, +430, +431, +432, +433, +434, +435, +436, +437, +438, +439, +440, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 24, +"tbk": 2, +"tl": 75589231, +"mb": 16, +"mbk": 1, +"gb": 8, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +517, +518, +519, +520, +521, +522, +523, +524, +525, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 6368, +"tbk": 1, +"tl": 30567, +"mb": 6368, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +3111, +3112, +3113, +3114, +3115, +3116, +3117, +3118, +3119, +3120, +3121, +3122, +3123, +3124, +1466, +138, +139, +140, +141, +142, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 92, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +955, +956, +957, +958, +959, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23 +] +}, +{ +"tb": 56, +"tbk": 1, +"tl": 77516292, +"mb": 56, +"mbk": 1, +"gb": 56, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +3125, +3126, +3127, +3128, +3129, +3130, +26 +] +}, +{ +"tb": 24000000, +"tbk": 300000, +"tl": 7194931, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +3131, +3132, +3133, +3134, +3135, +3136, +3137, +3138, +3139, +3140, +3141, +389, +390, +391, +609, +610, +611, +612, +24, +25, +26 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 4034, +"mb": 160, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +932, +933, +934, +935, +1541, +937, +762, +763, +764, +765, +766, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +474, +475, +1482, +1483, +1484, +1485, +13, +14, +15, +16, +17, +18, +116 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 75574077, +"mb": 96, +"mbk": 1, +"gb": 96, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1218, +1219, +1220, +1221, +1222, +1223, +1224, +61, +62, +63, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 28, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +203, +204, +205, +206, +207, +110, +111, +112, +113, +114, +115, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 19, +"mb": 160, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +57, +58, +59, +60, +130, +131, +132, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23 +] +}, +{ +"tb": 8001200, +"tbk": 200030, +"tl": 159115661416, +"mb": 800120, +"mbk": 20003, +"gb": 800120, +"gbk": 20003, +"eb": 0, +"ebk": 0, +"fs": [ +3142, +3143, +3144, +3145, +3146, +3147, +3148, +2845, +2846, +2845, +2847, +2848, +2849, +2850, +2851, +2852, +2853, +2854, +2855, +2856, +2857, +2858, +2859, +2860, +2861, +2862, +2863, +2864, +2865, +1883, +1217, +225, +226, +227, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 75571531, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1542, +1543, +1544, +1545, +1546, +1547, +1548, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +698, +391 +] +}, +{ +"tb": 144, +"tbk": 1, +"tl": 75570484, +"mb": 144, +"mbk": 1, +"gb": 144, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +750, +751, +752, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +942, +391 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 1934, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1616, +1617, +1618, +1619, +762, +763, +764, +765, +766, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 0, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2203, +2204, +2205, +2206, +2207, +2208, +2209, +2210, +2211, +2212, +1307, +1308, +1309, +1310, +1311, +1312, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 72902828, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1542, +1543, +1544, +1545, +1546, +1547, +1548, +448, +449, +450, +451, +452, +453, +454, +455, +456, +457, +458, +459, +460, +461, +462, +463, +464, +465, +223 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 75571276, +"mb": 72, +"mbk": 1, +"gb": 72, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +441, +442, +443, +444, +445, +446, +447, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +390, +391 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 158, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +120, +121, +122, +123, +124, +125, +126, +127, +128, +129, +61, +62, +63, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25 +] +}, +{ +"tb": 228, +"tbk": 1, +"tl": 19, +"mb": 228, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +57, +58, +59, +60, +130, +131, +132, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23 +] +}, +{ +"tb": 112, +"tbk": 3, +"tl": 23, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +1972, +1973, +1974, +1975, +1976, +1977, +1978, +1979, +1980, +1981, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 4765, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +332, +333, +334, +335, +336, +199, +200, +201, +202, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +526, +527 +] +}, +{ +"tb": 76, +"tbk": 1, +"tl": 79, +"mb": 76, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +428, +429, +430, +431, +432, +433, +434, +435, +436, +437, +438, +439, +440, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 240, +"tbk": 2, +"tl": 75612680, +"mb": 192, +"mbk": 1, +"gb": 48, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +851, +852, +853, +854, +855, +856, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92 +] +}, +{ +"tb": 4, +"tbk": 1, +"tl": 75572281, +"mb": 4, +"mbk": 1, +"gb": 4, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1030, +1031, +1032, +1033, +1034, +1035, +1036, +1037, +1038, +1039, +1040, +130, +131, +132, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 240, +"tbk": 2, +"tl": 75577196, +"mb": 192, +"mbk": 1, +"gb": 48, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +851, +852, +853, +854, +855, +856, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 75571323, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +1357, +1358, +1359, +1360, +1361, +1362, +1363, +1364, +1365, +1366, +1367, +1368, +1369, +457, +458, +604, +605, +606, +607, +608, +390, +391, +609, +610, +611, +612, +24, +25 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 19, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1290, +1291, +1292, +1293, +1294, +176, +177, +178, +179, +180, +181, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 1152, +"tbk": 1, +"tl": 86, +"mb": 1152, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +416, +417, +418, +419, +420, +421, +422, +423, +424, +425, +426, +427, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 319, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +120, +121, +122, +123, +124, +125, +126, +127, +128, +129, +61, +62, +63, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 77514280, +"mb": 16, +"mbk": 1, +"gb": 16, +"gbk": 1, +"eb": 16, +"ebk": 1, +"fs": [ +3149, +3150, +3151, +3152, +3153, +890, +891, +892, +893, +894, +895, +896, +897, +898, +899, +900, +901, +902, +903, +904, +905, +906, +907, +908, +909, +910, +911, +912, +913, +914, +915, +916, +917, +918, +919, +920, +921, +922, +923, +924, +925, +926, +927, +928, +929, +930, +931 +] +}, +{ +"tb": 211, +"tbk": 10, +"tl": 10424621, +"mb": 211, +"mbk": 10, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +2098, +2099, +2100, +3154, +3155, +3156, +3157, +3158, +3159, +3160, +3161, +3162, +3163, +3164, +3165, +3160, +3166, +3167, +3168, +3169, +3170, +3160, +2116, +2117, +2118, +2119, +2120, +2121, +2122, +2123, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 1, +"tbk": 1, +"tl": 15, +"mb": 1, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +3171, +3172, +3173, +3174, +3175, +3176, +3177, +3178, +3179, +3180, +3181, +907, +908, +909, +910, +911, +912, +913, +914, +915, +916, +917, +918, +919, +920, +921, +922, +923, +924, +925, +926, +927, +928, +929, +930, +931, +26 +] +}, +{ +"tb": 248, +"tbk": 5, +"tl": 307, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +481, +482, +1709, +1710, +1711, +1712, +1713, +1714, +1715, +1716, +1717, +1718, +1719, +1720, +1721, +1722, +1723, +1724, +1725, +1726, +1727, +1728, +1729, +1730, +731, +732, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 1152, +"tbk": 1, +"tl": 352, +"mb": 1152, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +416, +417, +418, +419, +420, +421, +422, +423, +424, +425, +426, +427, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2548, +2549, +2550, +2551, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 128, +"tbk": 1, +"tl": 99, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +989, +990, +991, +992, +993, +994, +995, +996, +997, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 3813, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +2194, +2195, +2196, +2197, +2198, +2199, +2200, +2201, +2202, +172, +173, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +474, +475, +1482, +1483, +1484, +1485, +13, +14, +15, +16, +17, +18, +208, +209, +210 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 28, +"mb": 160, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +57, +58, +59, +60, +130, +131, +132, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23 +] +}, +{ +"tb": 19, +"tbk": 6, +"tl": 299, +"mb": 10, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +721, +722, +723, +724, +725, +726, +727, +728, +729, +730, +138, +139, +140, +141, +142, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 195, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +143, +144 +] +}, +{ +"tb": 40, +"tbk": 2, +"tl": 75577196, +"mb": 32, +"mbk": 1, +"gb": 8, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +845, +846, +847, +848, +849, +850, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23 +] +}, +{ +"tb": 176, +"tbk": 1, +"tl": 75590656, +"mb": 176, +"mbk": 1, +"gb": 176, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1936, +1937, +1938, +1939, +1940, +1941, +1942, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75631340, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +278, +279, +280, +281, +282, +283, +284, +285, +286, +287, +288, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +474, +475, +476, +477, +478, +479, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 1312, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +861, +862, +863, +864, +865, +866, +867, +868, +556, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 880, +"tbk": 11, +"tl": 0, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1263, +1264, +1265, +1266, +1323, +937, +762, +763, +764, +765, +766, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 212, +"tbk": 1, +"tl": 29, +"mb": 212, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +57, +58, +59, +60, +130, +131, +132, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23 +] +}, +{ +"tb": 208, +"tbk": 3, +"tl": 921, +"mb": 128, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +575, +547, +548, +556, +576, +577, +578, +579, +580, +581, +198, +198, +199, +200, +201, +202, +128, +129 +] +}, +{ +"tb": 96, +"tbk": 2, +"tl": 49, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +1606, +1607, +1608, +1609, +61, +62, +63, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 42, +"tbk": 1, +"tl": 2770, +"mb": 42, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +145, +146, +147, +148, +149, +150, +151, +152, +153, +154, +155, +156, +157, +158, +159, +160, +161, +162, +163, +164, +165, +166, +167, +168, +169, +170, +171, +172, +173, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 40, +"tbk": 1, +"tl": 75573884, +"mb": 40, +"mbk": 1, +"gb": 40, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1118, +1119, +1120, +1121, +1122, +1123, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 48, +"tbk": 3, +"tl": 10496, +"mb": 48, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1943, +1944, +1945, +1240, +1241, +1242, +1243, +1244, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 4365, +"mb": 160, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +133, +134, +135, +136, +137, +138, +139, +140, +141, +142, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 1396, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +75, +76, +77, +78, +79, +80, +81, +82, +83, +84, +85, +86, +87, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 40, +"tbk": 1, +"tl": 75579269, +"mb": 40, +"mbk": 1, +"gb": 40, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1118, +1119, +1120, +1121, +1122, +1123, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 2400, +"tbk": 4, +"tl": 34, +"mb": 1280, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +2451, +2452, +3182, +3183, +3184, +3185, +3186, +3187, +3188, +3189, +3190, +3191, +3192, +3193, +914, +915, +916, +917, +918, +919, +920, +921, +922, +923, +924, +925, +926, +927, +928, +929, +930, +931, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 17, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +2242, +2243, +2244, +561, +562, +563, +564, +565, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 256, +"tbk": 2, +"tl": 1818, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +182, +183, +184, +185, +186, +187, +188, +189, +190, +549, +550, +551, +552, +553, +554, +555, +556, +198, +576, +577, +578, +579, +580, +581 +] +}, +{ +"tb": 2, +"tbk": 1, +"tl": 36, +"mb": 2, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +299, +300, +301, +302, +303, +304, +305, +306, +307, +308, +309, +310, +311, +312, +130, +131, +132, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 1343, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +861, +862, +863, +864, +865, +866, +867, +868, +556, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 11, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +474, +475, +476, +477, +478, +479, +13, +14, +15, +16, +17, +18, +116 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 27, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +313, +314, +315, +316, +317, +318, +319, +320, +321, +322, +323, +324, +325, +326, +327, +328, +13, +14, +15, +16, +17, +18, +298 +] +}, +{ +"tb": 512, +"tbk": 1, +"tl": 75579287, +"mb": 512, +"mbk": 1, +"gb": 512, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1225, +1226, +1227, +1228, +1229, +1230, +1231, +1232, +1233, +1234, +1235, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1583, +1584, +1585, +1586, +1587, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 7368, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +75, +76, +77, +78, +79, +80, +81, +82, +83, +84, +85, +86, +87, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 75571440, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1542, +1543, +1544, +1545, +1546, +1547, +1548, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +698, +391 +] +}, +{ +"tb": 2048, +"tbk": 64, +"tl": 45696, +"mb": 416, +"mbk": 13, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +541, +542, +543, +544, +545, +1595, +1596, +1597, +191, +192, +193, +194, +195, +196, +197, +198, +198 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 2962, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +774, +775, +198, +192, +193, +194, +195, +196, +197, +198, +199, +200, +201, +202, +128, +129 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 14965, +"mb": 160, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1255, +1256, +1257, +1258, +937, +762, +763, +764, +765, +766, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 253, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +120, +121, +122, +123, +124, +125, +126, +127, +128, +129, +61, +62, +63, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23 +] +}, +{ +"tb": 240, +"tbk": 3, +"tl": 226745558, +"mb": 240, +"mbk": 3, +"gb": 240, +"gbk": 3, +"eb": 0, +"ebk": 0, +"fs": [ +528, +529, +530, +531, +532, +533, +534, +535, +536, +537, +130, +131, +132, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 3288, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2008, +2009, +2010, +561, +562, +563, +564, +565, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75570163, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +2390, +2391, +2392, +2393, +2394, +2395, +2396, +2397, +2398, +457, +458, +604, +605, +606, +607, +608, +753, +391, +609, +610, +611, +612, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 17, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +2235, +2236, +2237, +2238, +2239, +2240, +2241, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 75585196, +"mb": 96, +"mbk": 1, +"gb": 96, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1218, +1219, +1220, +1221, +1222, +1223, +1224, +61, +62, +63, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 95, +"tbk": 1, +"tl": 1875364, +"mb": 95, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +2098, +2099, +2100, +2101, +2102, +2103, +2104, +3194, +3195, +3196, +3197, +3198, +3199, +3200, +3201, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 77515080, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +2171, +2172, +2173, +2174, +2175, +3202, +3203, +3204, +3205, +3206, +3207, +3208, +26 +] +}, +{ +"tb": 480, +"tbk": 10, +"tl": 1010317, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2827, +2828, +2829, +2830, +2831, +2832, +2449, +2450, +1575, +1576, +1575, +1576, +1577, +1578, +1579, +1580, +1581, +1582, +2411, +2412, +504, +505, +506, +507, +508, +509, +510, +511, +512, +513, +514, +515, +516, +270, +271, +272 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 75590679, +"mb": 80, +"mbk": 1, +"gb": 80, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +65, +66, +67, +68, +69, +70, +71, +72, +73, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 75600096, +"mb": 80, +"mbk": 1, +"gb": 80, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1588, +1589, +1590, +1591, +1592, +1593, +1594, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1903, +1904, +1905, +1906, +1907, +1908, +1909, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75599444, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +278, +279, +280, +281, +282, +283, +284, +285, +286, +287, +288, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 18, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +359, +360, +361, +362, +363, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 248, +"tbk": 1, +"tl": 160, +"mb": 248, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +767, +768, +769, +770, +771, +772, +773, +130, +131, +132, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 144, +"tbk": 1, +"tl": 75570118, +"mb": 144, +"mbk": 1, +"gb": 144, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +750, +751, +752, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +753, +391 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 30258, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +932, +933, +934, +935, +936, +937, +762, +763, +764, +765, +766, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 144, +"tbk": 1, +"tl": 2584, +"mb": 144, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +754, +755, +756, +757, +758, +759, +760, +761, +762, +763, +764, +765, +766, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 240, +"tbk": 2, +"tl": 8, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2229, +2230, +110, +111, +112, +113, +114, +115, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 120, +"tbk": 2, +"tl": 75599911, +"mb": 96, +"mbk": 1, +"gb": 24, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +613, +614, +615, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92 +] +}, +{ +"tb": 2, +"tbk": 1, +"tl": 37, +"mb": 2, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +299, +300, +301, +302, +303, +304, +305, +306, +307, +308, +309, +310, +311, +312, +61, +62, +63, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75571259, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +596, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +390, +391, +609, +610, +611, +612 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 183, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +932, +933, +934, +935, +1541, +1564, +1436, +1437, +1438, +1439, +1440, +1441, +1442, +1443, +1444, +1445, +1446, +1447, +1448, +1449, +1450, +1451, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 28, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1610, +1611, +1612, +1613, +1614, +1615, +61, +62, +63, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 37, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1167, +1168, +1169, +1170, +11, +12, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 30277, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +1041, +1042, +1043, +1044, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 901, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +332, +333, +334, +335, +336, +199, +200, +201, +202, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +103, +104 +] +}, +{ +"tb": 240, +"tbk": 3, +"tl": 0, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +105, +106, +107, +108, +109, +110, +111, +112, +113, +114, +115, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 21, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1731, +1732, +1733, +1734, +1735, +1736, +1737, +1738, +1739, +1740, +1741, +1742, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 1696, +"tbk": 26, +"tl": 41600, +"mb": 1024, +"mbk": 12, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +2656, +2657, +2658, +2659, +2660, +1595, +1596, +1597, +191, +192, +193, +194, +195, +196, +197, +198, +198 +] +}, +{ +"tb": 288, +"tbk": 2, +"tl": 19, +"mb": 240, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2229, +2230, +110, +111, +112, +113, +114, +115, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 120, +"tbk": 2, +"tl": 75579844, +"mb": 96, +"mbk": 1, +"gb": 24, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +613, +614, +615, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23 +] +}, +{ +"tb": 10, +"tbk": 1, +"tl": 27, +"mb": 10, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +977, +978, +979, +980, +981, +982, +983, +984, +985, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 587, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +120, +121, +122, +123, +124, +125, +126, +127, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 462, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2668, +2669, +2670, +2671, +2672, +2673, +2674, +2675, +2676, +2677, +2678, +2679, +250, +251, +252, +253, +254, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 47, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +203, +204, +205, +206, +207, +110, +111, +112, +113, +114, +115, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 18, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1847, +1848, +1849, +1850, +1851, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 256, +"tbk": 2, +"tl": 2529, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +182, +183, +184, +185, +186, +187, +188, +189, +190, +556, +198, +576, +577, +578, +579, +580, +581, +549, +550, +551, +552, +553, +554, +555 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 86, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +955, +956, +957, +958, +959, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23 +] +}, +{ +"tb": 240, +"tbk": 2, +"tl": 37, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2229, +2230, +110, +111, +112, +113, +114, +115, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 2, +"tl": 287, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +828, +829, +830, +831, +832, +833, +834, +835, +836, +837, +838, +554, +555, +556, +828, +829, +830, +831, +832, +833 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 48, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1290, +1291, +1292, +1293, +1294, +176, +177, +178, +179, +180, +181, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 400, +"tbk": 1, +"tl": 75579748, +"mb": 400, +"mbk": 1, +"gb": 400, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +879, +880, +881, +882, +883, +884, +130, +131, +132, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 7256, +"tbk": 877, +"tl": 121, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1000, +1001, +1002, +1003, +1004, +191, +828, +829, +830, +831, +832, +833, +199, +200, +201, +202, +128, +129, +61, +62, +63, +13, +14, +15, +16, +17, +18 +] +}, +{ +"tb": 252, +"tbk": 1, +"tl": 68, +"mb": 252, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +1103, +1104, +1105, +1106, +1107, +1108, +1109, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 67210080, +"tbk": 100000, +"tl": 5940705, +"mb": 1680, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +3209, +3210, +3211, +3212, +3213, +3214, +3215, +2081, +2082, +2083, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 30439, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +133, +134, +135, +136, +137, +138, +139, +140, +141, +142, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 800, +"tbk": 2, +"tl": 0, +"mb": 640, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +668, +669, +670, +671, +672, +673, +674, +176, +177, +178, +179, +180, +181, +16, +17, +18, +116, +20, +21, +22, +23 +] +}, +{ +"tb": 96, +"tbk": 12, +"tl": 8931, +"mb": 48, +"mbk": 6, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +1766, +1595, +1596, +1597, +556, +198, +576, +577, +578, +579, +580, +581, +834, +835, +836, +837, +838, +554, +555 +] +}, +{ +"tb": 576, +"tbk": 2, +"tl": 178, +"mb": 384, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +946, +947, +948, +3105, +3106, +3107, +3108, +3109, +3110, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 960, +"tbk": 30, +"tl": 4776, +"mb": 192, +"mbk": 6, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +541, +542, +543, +544, +545, +1595, +1596, +1597, +556, +576, +577, +578, +579, +580, +581, +834, +835, +836, +837, +838, +554, +555 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 1589, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +1137, +1138, +1139, +1140, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 75578108, +"mb": 160, +"mbk": 1, +"gb": 160, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +645, +646, +647, +648, +649, +650, +651, +652, +650, +653, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 269, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +861, +862, +863, +864, +865, +866, +867, +868, +556, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 248, +"tbk": 5, +"tl": 294, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +481, +482, +1709, +1710, +1711, +1712, +1713, +1714, +1715, +1716, +1717, +1718, +1719, +1720, +1721, +1722, +1723, +1724, +1725, +1726, +1727, +1728, +1729, +1730, +268, +269, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 1734, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +3216, +3217, +3218, +3219, +3220, +3221, +3222, +3223, +3224, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 0, +"mb": 160, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1825, +1826, +1827, +1828, +1829, +1830, +1831, +1832, +1833, +1834, +1835, +1836, +1837, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 75571623, +"mb": 80, +"mbk": 1, +"gb": 80, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +2390, +2391, +2392, +2393, +2394, +2395, +2396, +2397, +2398, +457, +458, +604, +605, +606, +607, +608, +698, +391, +609, +610, +611, +612, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1049, +1050, +1051, +1052, +1053, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 963, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +861, +862, +863, +864, +865, +866, +867, +868, +556, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 9601440, +"tbk": 200030, +"tl": 21126, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2586, +2587, +2588, +2589, +2590, +2591, +2592, +2593, +2594, +3225, +3226, +3227, +464, +465, +223, +224, +225, +226, +227, +24, +25, +26 +] +}, +{ +"tb": 8001200, +"tbk": 200030, +"tl": 5927377, +"mb": 40, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +3228, +3229, +3230, +3231, +3232, +3233, +3234, +3235, +3236, +3237, +3238, +3239, +3240, +3241, +2850, +2851, +2852, +2853, +2854, +2855, +2856, +2857, +2858, +2859, +2860, +2861, +2862, +2863, +2864, +2865, +1883, +1217 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75600283, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +278, +279, +280, +281, +282, +283, +284, +285, +286, +287, +288, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 3261, +"mb": 72, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +699, +700, +701, +702, +1600, +1601, +1602, +1603, +1604, +1605, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 2000, +"tbk": 1, +"tl": 75585004, +"mb": 2000, +"mbk": 1, +"gb": 2000, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1259, +1260, +1261, +1262, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 2505, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +1041, +1042, +1043, +1044, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 4, +"tbk": 1, +"tl": 75581942, +"mb": 4, +"mbk": 1, +"gb": 4, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1030, +1031, +1032, +1033, +1034, +1035, +1036, +1037, +1038, +1039, +1040, +130, +131, +132, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 66, +"tbk": 2, +"tl": 106, +"mb": 44, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +1573, +1574, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576, +1577, +1578, +1579, +1580, +1581, +1582, +1656, +1657, +1658, +270 +] +}, +{ +"tb": 456, +"tbk": 3, +"tl": 75599838, +"mb": 192, +"mbk": 1, +"gb": 168, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1179, +1180, +1181, +1182, +1183, +1184, +1185, +1186, +130, +131, +132, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92 +] +}, +{ +"tb": 64, +"tbk": 2, +"tl": 5431, +"mb": 64, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +1766, +546, +547, +548, +191, +192, +193, +194, +195, +196, +197, +198, +198, +199, +200, +201, +202 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +474, +475, +476, +477, +478, +479, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 320, +"tbk": 4, +"tl": 11137, +"mb": 320, +"mbk": 4, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +932, +933, +934, +935, +1541, +937, +762, +763, +764, +765, +766, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 288, +"tbk": 2, +"tl": 35, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +313, +314, +315, +316, +317, +318, +319, +320, +321, +322, +323, +324, +325, +326, +327, +328, +13, +14, +15, +16, +17, +18, +116 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 2006, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +754, +755, +756, +757, +758, +759, +760, +761, +762, +763, +764, +765, +766, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 200, +"tbk": 1, +"tl": 28, +"mb": 200, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +57, +58, +59, +60, +130, +131, +132, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 154, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1255, +1256, +1257, +1258, +1564, +1436, +1437, +1438, +1439, +1440, +1441, +1442, +1443, +1444, +1445, +1446, +1447, +1448, +1449, +1450, +1451, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 382, +"mb": 160, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +779, +780, +781, +1422, +1423, +1437, +1438, +1439, +1440, +1441, +1442, +1443, +1444, +1445, +1446, +1447, +1448, +1449, +1450, +1451, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 3953, +"mb": 160, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +932, +933, +934, +935, +1541, +937, +762, +763, +764, +765, +766, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 979, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +861, +862, +863, +864, +865, +866, +867, +868, +556, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 94, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +1606, +1607, +1608, +1609, +130, +131, +132, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 37, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +3002, +3003, +3004, +762, +763, +764, +765, +766, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 240, +"tbk": 3, +"tl": 8917, +"mb": 240, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +133, +134, +135, +136, +137, +138, +139, +140, +141, +142, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 44806720, +"tbk": 200030, +"tl": 159113693529, +"mb": 4480672, +"mbk": 20003, +"gb": 4480672, +"gbk": 20003, +"eb": 0, +"ebk": 0, +"fs": [ +3242, +3243, +3244, +3245, +3246, +3247, +3248, +3249, +3250, +3251, +3252, +3253, +3254, +2850, +2851, +2852, +2853, +2854, +2855, +2856, +2857, +2858, +2859, +2860, +2861, +2862, +2863, +2864, +2865, +1883, +1217, +225, +226, +227, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 40, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2527, +2528, +2529, +2530, +2531, +2532, +2533, +2534, +3255, +3256, +3257, +3258, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 327, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +64 +] +}, +{ +"tb": 32, +"tbk": 2, +"tl": 273, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +774, +775, +828, +829, +830, +831, +832, +833, +199, +200, +201, +202, +128, +129, +61, +62, +63, +13, +14, +15 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 75571186, +"mb": 72, +"mbk": 1, +"gb": 72, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +441, +442, +443, +444, +445, +446, +447, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +390, +391 +] +}, +{ +"tb": 8000000, +"tbk": 100000, +"tl": 15054, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2586, +2587, +2588, +2589, +2590, +2591, +2592, +2593, +2594, +2595, +2596, +2597, +698, +391, +609, +610, +611, +612, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 68, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +289, +290, +291, +292, +293, +294, +295, +296, +297, +130, +131, +132, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 240, +"tbk": 2, +"tl": 38, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2229, +2230, +110, +111, +112, +113, +114, +115, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 18, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +986, +987, +988, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 72902764, +"mb": 72, +"mbk": 1, +"gb": 72, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +441, +442, +443, +444, +445, +446, +447, +448, +1399, +1400, +1401, +1402, +1403, +1404, +1405, +1406, +457, +458, +459, +460, +461, +462, +463, +464, +465, +223 +] +}, +{ +"tb": 320, +"tbk": 4, +"tl": 11131, +"mb": 320, +"mbk": 4, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +932, +933, +934, +935, +1541, +937, +762, +763, +764, +765, +766, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 3200640, +"tbk": 10, +"tl": 48029, +"mb": 320064, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +3259, +3260, +3261, +3262, +3263, +3264, +3265, +3266, +3267, +3268, +3269, +3270, +1575, +1576, +1575, +1576, +1577, +1578, +1579, +1580, +1581, +1582, +2411, +2412, +504, +505, +506, +507, +508, +509, +510, +511, +512, +513, +514, +515, +516, +270, +271, +272 +] +}, +{ +"tb": 96, +"tbk": 2, +"tl": 240, +"mb": 96, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1746, +1747, +1748, +1749, +1750, +716, +717, +718, +719, +720, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 144, +"tbk": 2, +"tl": 15669, +"mb": 144, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +699, +700, +701, +702, +1202, +561, +562, +563, +564, +565, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 30534, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +133, +134, +135, +136, +2245, +138, +139, +140, +141, +142, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 512, +"tbk": 1, +"tl": 75588757, +"mb": 512, +"mbk": 1, +"gb": 512, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1225, +1226, +1227, +1228, +1229, +1230, +1231, +1232, +1233, +1234, +1235, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 2, +"tbk": 2, +"tl": 249, +"mb": 2, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +721, +722, +723, +724, +725, +726, +727, +728, +729, +730, +138, +139, +140, +141, +142, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 3, +"tbk": 1, +"tl": 816, +"mb": 3, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +228, +229, +230, +231, +232, +233, +234, +235, +236, +237, +238, +239, +240, +241, +242, +243, +244, +245, +246, +247, +248, +249, +1844, +1845, +1846, +26 +] +}, +{ +"tb": 400, +"tbk": 1, +"tl": 75599613, +"mb": 400, +"mbk": 1, +"gb": 400, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +879, +880, +881, +882, +883, +884, +61, +62, +63, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 99, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +955, +956, +957, +958, +959, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23 +] +}, +{ +"tb": 104, +"tbk": 1, +"tl": 0, +"mb": 104, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2203, +2204, +2205, +2206, +2207, +2208, +2209, +2210, +2211, +2212, +1307, +1308, +1309, +1310, +1311, +1312, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 119, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1746, +1747, +1748, +1749, +1750, +716, +717, +718, +719, +720, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 128, +"tbk": 1, +"tl": 499, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +182, +183, +184, +185, +186, +187, +188, +189, +190, +556, +576, +577, +578, +579, +580, +581, +198, +199, +200, +201, +202, +128, +129 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 19, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +359, +360, +361, +362, +363, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 18, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1847, +1848, +1849, +1850, +1851, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23 +] +}, +{ +"tb": 96, +"tbk": 2, +"tl": 4209, +"mb": 96, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +857, +858, +859, +860, +762, +763, +764, +765, +766, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 224, +"tbk": 3, +"tl": 35, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1999, +2000, +2001, +2002, +2003, +2004, +2005, +2006, +2007, +322, +323, +324, +325, +326, +327, +328, +13, +14, +15, +16, +17, +18, +64 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 2618, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +575, +547, +548, +556, +198, +576, +577, +578, +579, +580, +581, +198, +199, +200, +201, +202, +128, +129 +] +}, +{ +"tb": 62, +"tbk": 1, +"tl": 38, +"mb": 62, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +960, +961, +962, +963, +964, +965, +966, +967, +130, +131, +132, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 3305, +"mb": 72, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +699, +700, +701, +702, +1951, +561, +562, +563, +564, +565, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 270, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +861, +862, +863, +864, +865, +866, +867, +868, +556, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 320, +"tbk": 2, +"tl": 3, +"mb": 160, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +791, +3271, +3272, +3273, +3274, +3275, +3276, +3277, +3278, +3279, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 236, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1370, +1371, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23 +] +}, +{ +"tb": 224, +"tbk": 1, +"tl": 1986, +"mb": 224, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +2750, +2751, +2752, +2753, +2754, +2755, +2756, +2757, +1750, +716, +717, +718, +719, +720, +16, +17, +18, +208, +209, +210, +24, +25 +] +}, +{ +"tb": 200, +"tbk": 1, +"tl": 73, +"mb": 200, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +1103, +1104, +1105, +1106, +1107, +1108, +1109, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 896, +"tbk": 3, +"tl": 75570428, +"mb": 512, +"mbk": 1, +"gb": 512, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +683, +684, +685, +686, +687, +688, +689, +690, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +942, +391 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 4222, +"mb": 160, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +932, +933, +934, +935, +1541, +937, +762, +763, +764, +765, +766, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 192, +"tbk": 3, +"tl": 49, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +2552, +2553, +2554, +2555, +2556, +2557, +2558, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 27, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +289, +290, +291, +292, +293, +294, +295, +296, +297, +61, +62, +63, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 28, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +289, +290, +291, +292, +293, +294, +295, +296, +297, +61, +62, +63, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 288, +"tbk": 2, +"tl": 61540, +"mb": 288, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +557, +558, +559, +560, +561, +562, +563, +564, +565, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 184, +"tbk": 5, +"tl": 377947111, +"mb": 184, +"mbk": 5, +"gb": 184, +"gbk": 5, +"eb": 0, +"ebk": 0, +"fs": [ +528, +529, +530, +531, +532, +533, +534, +535, +536, +537, +130, +131, +132, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 784, +"tbk": 14, +"tl": 36997, +"mb": 784, +"mbk": 14, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1348, +1349, +1350, +1351, +1352, +1353, +1354, +1355, +1356, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 9, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2507, +2508, +2509, +2510, +1171, +1172, +1054, +1055, +642, +643, +644, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 16, +"tbk": 2, +"tl": 1117, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +1766, +546, +547, +548, +549, +550, +551, +552, +553, +554, +555, +556, +198, +576, +577, +578, +579, +580, +581 +] +}, +{ +"tb": 704, +"tbk": 11, +"tl": 508, +"mb": 704, +"mbk": 11, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +2348, +2349, +2350, +2351, +2352, +2353, +2354, +322, +323, +324, +325, +326, +327, +328, +13, +14, +15, +16, +17, +18, +19 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 75575641, +"mb": 80, +"mbk": 1, +"gb": 80, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +65, +66, +67, +68, +69, +70, +71, +72, +73, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 85, +"tbk": 29, +"tl": 8558, +"mb": 85, +"mbk": 29, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +228, +229, +230, +231, +232, +233, +234, +235, +236, +237, +238, +239, +240, +241, +242, +243, +244, +2793, +2794, +2795, +2796, +2797, +2798, +2799, +1195, +1196, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 525, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +678, +679, +680, +681, +682, +199, +200, +201, +202, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +208, +209, +210 +] +}, +{ +"tb": 128, +"tbk": 1, +"tl": 7822, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1236, +1237, +1238, +1239, +2742, +2743, +2744, +2745, +2746, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 128, +"tbk": 1, +"tl": 146, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +2271, +2272, +2273, +2274, +2275, +2276, +2277, +2278, +2279, +2280, +2281, +2282, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +74 +] +}, +{ +"tb": 48, +"tbk": 3, +"tl": 10505, +"mb": 48, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1943, +1944, +1945, +1240, +1241, +1242, +1243, +1244, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 66, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +1606, +1607, +1608, +1609, +130, +131, +132, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 288, +"tbk": 9, +"tl": 680139284, +"mb": 288, +"mbk": 9, +"gb": 288, +"gbk": 9, +"eb": 0, +"ebk": 0, +"fs": [ +364, +365, +366, +367, +368, +369, +370, +371, +372, +373, +3280, +3281, +3282, +377, +378, +379, +380, +381, +382, +383, +384, +385, +386, +387, +388, +389, +390, +391 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 70, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +289, +290, +291, +292, +293, +294, +295, +296, +297, +130, +131, +132, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 240, +"tbk": 3, +"tl": 0, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1263, +1264, +1265, +1266, +1323, +937, +762, +763, +764, +765, +766, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 896, +"tbk": 1, +"tl": 230, +"mb": 896, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +710, +711, +712, +713, +714, +715, +716, +717, +718, +719, +720, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 26, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +289, +290, +291, +292, +293, +294, +295, +296, +297, +61, +62, +63, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 3200000, +"tbk": 100000, +"tl": 11444, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2586, +2587, +2588, +2589, +2590, +2591, +2592, +2593, +2594, +2595, +2596, +2597, +942, +391, +609, +610, +611, +612, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75590670, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1520, +1521, +1522, +1523, +1524, +1525, +1526, +1527, +1528, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +474, +475, +1482, +1483, +1484, +1485, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1903, +1904, +1905, +1906, +1907, +1908, +1909, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25 +] +}, +{ +"tb": 960, +"tbk": 10, +"tl": 10424509, +"mb": 960, +"mbk": 10, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +3283, +3284, +3285, +3286, +3287, +3288, +3289, +3290, +3160, +3161, +3162, +3163, +3164, +3165, +3160, +3166, +3167, +3168, +3169, +3170, +3160, +2116, +2117, +2118, +2119, +2120, +2121, +2122, +2123, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 40, +"tbk": 2, +"tl": 75599911, +"mb": 32, +"mbk": 1, +"gb": 8, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +845, +846, +847, +848, +849, +850, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92 +] +}, +{ +"tb": 480, +"tbk": 2, +"tl": 0, +"mb": 320, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1825, +1826, +1827, +1828, +1829, +1830, +1831, +1832, +1833, +1834, +1835, +1836, +1837, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 20304, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +88, +89 +] +}, +{ +"tb": 32592, +"tbk": 9, +"tl": 75610137, +"mb": 12288, +"mbk": 1, +"gb": 8112, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1179, +1180, +1181, +1182, +1183, +1184, +1185, +1186, +130, +131, +132, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 28, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1610, +1611, +1612, +1613, +1614, +1615, +130, +131, +132, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 19, +"tbk": 1, +"tl": 77515098, +"mb": 19, +"mbk": 1, +"gb": 19, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +3291, +3292, +3293, +3294, +3295, +3296, +3297, +3298, +3299, +3300, +3301, +3302, +3303, +3304, +3305, +3306, +3307, +3308, +3309, +3310, +3311, +3312, +3313, +3314, +3315, +3316, +26 +] +}, +{ +"tb": 4000800, +"tbk": 10, +"tl": 813886, +"mb": 400080, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +791, +3271, +3272, +3273, +3274, +3275, +3276, +3277, +3278, +3279, +1575, +1576, +1575, +1576, +1577, +1578, +1579, +1580, +1581, +1582, +2411, +2412, +504, +505, +506, +507, +508, +509, +510, +511, +512, +513, +514, +515, +516, +270 +] +}, +{ +"tb": 162, +"tbk": 2, +"tl": 2, +"mb": 108, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +3317, +3318, +3319, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +474, +475, +1482, +1483, +1484, +1485, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 76, +"tbk": 1, +"tl": 75570594, +"mb": 76, +"mbk": 1, +"gb": 76, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +938, +939, +940, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +942, +391 +] +}, +{ +"tb": 8064, +"tbk": 6, +"tl": 367, +"mb": 4096, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +93, +94, +95, +96, +97, +98, +99, +100, +101, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +526, +527 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 75579458, +"mb": 96, +"mbk": 1, +"gb": 96, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1218, +1219, +1220, +1221, +1222, +1223, +1224, +61, +62, +63, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 1344, +"tbk": 3, +"tl": 368, +"mb": 768, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +946, +947, +948, +1760, +1761, +1762, +1763, +1764, +1765, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 12, +"tbk": 7, +"tl": 19672, +"mb": 12, +"mbk": 7, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1339, +1340, +1341, +1342, +1343, +1344, +1345, +1346, +1347, +937, +762, +763, +764, +765, +766, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 1, +"tbk": 1, +"tl": 0, +"mb": 1, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +3320, +3321, +3322, +3323, +3324, +3325, +3326, +3327, +3328, +3329, +3330, +3331, +3332, +3333, +3334, +3335, +3336, +2807, +2808, +2809, +2810, +1505, +1506, +2811, +2812, +2813, +2814, +2815, +2816, +2817, +2818, +2819, +2327, +2328, +2820, +2821, +2822, +2823, +2824, +2825, +2826 +] +}, +{ +"tb": 440, +"tbk": 1, +"tl": 75571512, +"mb": 440, +"mbk": 1, +"gb": 440, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +938, +939, +940, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +698, +391 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 72902989, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +3337, +3338, +3339, +3340, +3341, +3342, +3343, +3344, +3345, +3346, +3347, +3348, +3349, +3350, +457, +458, +459, +460, +461, +462, +463, +464, +465, +223, +224, +225, +226, +227 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1583, +1584, +1585, +1586, +1587, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 38, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1290, +1291, +1292, +1293, +1294, +176, +177, +178, +179, +180, +181, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1583, +1584, +1585, +1586, +1587, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25 +] +}, +{ +"tb": 432, +"tbk": 2, +"tl": 4964, +"mb": 432, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1187, +1188, +1189, +1190, +1191, +1192, +1193, +1194, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 375, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1370, +1371, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92 +] +}, +{ +"tb": 440, +"tbk": 1, +"tl": 75571503, +"mb": 440, +"mbk": 1, +"gb": 440, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +938, +939, +940, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +698, +391 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75571348, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1274, +1275, +1276, +1277, +1278, +1279, +1280, +1281, +1282, +1283, +1284, +1285, +1286, +1287, +1288, +1289, +377, +378, +379, +380, +381, +382, +383, +384, +385, +386, +387, +388, +389, +698, +391 +] +}, +{ +"tb": 1792, +"tbk": 3, +"tl": 75570296, +"mb": 1024, +"mbk": 1, +"gb": 1024, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +683, +684, +685, +686, +687, +688, +689, +690, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +941, +391 +] +}, +{ +"tb": 7, +"tbk": 1, +"tl": 27, +"mb": 7, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +977, +978, +979, +980, +981, +982, +983, +984, +985, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 1502, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +133, +134, +135, +136, +137, +138, +139, +140, +141, +142, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 7863360, +"tbk": 130, +"tl": 764832834, +"mb": 3932160, +"mbk": 10, +"gb": 3932160, +"gbk": 10, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +3283, +3284, +3285, +3351, +3352, +3353, +504, +505, +506, +507, +508, +509, +510, +511, +512, +513, +514, +515, +516, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 4020, +"tbk": 2, +"tl": 151201354, +"mb": 4020, +"mbk": 2, +"gb": 4020, +"gbk": 2, +"eb": 0, +"ebk": 0, +"fs": [ +869, +870, +871, +872, +873, +874, +875, +876, +877, +878, +61, +62, +63, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 1694, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +2235, +2236, +2237, +2238, +2239, +2240, +2241, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 168, +"tbk": 2, +"tl": 151154304, +"mb": 168, +"mbk": 2, +"gb": 168, +"gbk": 2, +"eb": 0, +"ebk": 0, +"fs": [ +528, +529, +530, +531, +532, +533, +534, +535, +536, +537, +130, +131, +132, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 8064, +"tbk": 6, +"tl": 110, +"mb": 4096, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +93, +94, +95, +96, +97, +98, +99, +100, +101, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +208, +209, +210 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 75600712, +"mb": 96, +"mbk": 1, +"gb": 96, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1218, +1219, +1220, +1221, +1222, +1223, +1224, +61, +62, +63, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +596, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +390 +] +}, +{ +"tb": 896, +"tbk": 1, +"tl": 395, +"mb": 896, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +710, +711, +712, +713, +714, +715, +716, +717, +718, +719, +720, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 128, +"tbk": 1, +"tl": 30885, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1236, +1237, +1238, +1239, +1946, +1947, +1948, +1949, +1950, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 1792, +"tbk": 3, +"tl": 75570205, +"mb": 1024, +"mbk": 1, +"gb": 1024, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +683, +684, +685, +686, +687, +688, +689, +690, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +941, +391 +] +}, +{ +"tb": 768, +"tbk": 4, +"tl": 274, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +1757, +1758, +1759, +762, +763, +764, +765, +766, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 2000, +"tbk": 1, +"tl": 75599529, +"mb": 2000, +"mbk": 1, +"gb": 2000, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1259, +1260, +1261, +1262, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 7447, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +2426, +2427, +2428, +937, +762, +763, +764, +765, +766, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 480, +"tbk": 6, +"tl": 0, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1263, +1264, +1265, +1266, +1323, +937, +762, +763, +764, +765, +766, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 67, +"tbk": 1, +"tl": 42, +"mb": 67, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +960, +961, +962, +963, +964, +965, +966, +967, +130, +131, +132, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 208, +"tbk": 3, +"tl": 75585705, +"mb": 128, +"mbk": 1, +"gb": 128, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +998, +999, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 6, +"tl": 24, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1000, +1001, +1002, +1003, +1004, +556, +828, +829, +830, +831, +832, +833, +834, +835, +836, +837, +838, +554, +555, +556, +828, +829, +830, +831, +832, +833, +199, +200, +201, +202 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 27, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +3002, +3003, +3004, +762, +763, +764, +765, +766, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 86400000, +"tbk": 100000, +"tl": 11070034561, +"mb": 8640000, +"mbk": 10000, +"gb": 8640000, +"gbk": 10000, +"eb": 0, +"ebk": 0, +"fs": [ +47, +1203, +1204, +1205, +1206, +3354, +3355, +3356, +1210, +1211, +1212, +1213, +1214, +1215, +1216, +1217 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 75574519, +"mb": 96, +"mbk": 1, +"gb": 96, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1218, +1219, +1220, +1221, +1222, +1223, +1224, +130, +131, +132, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 68, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +1606, +1607, +1608, +1609, +61, +62, +63, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 8064, +"tbk": 6, +"tl": 218, +"mb": 4096, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +93, +94, +95, +96, +97, +98, +99, +100, +101, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +74 +] +}, +{ +"tb": 144, +"tbk": 1, +"tl": 28, +"mb": 144, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +57, +58, +59, +60, +61, +62, +63, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23 +] +}, +{ +"tb": 112, +"tbk": 8, +"tl": 25, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1000, +1001, +1002, +1003, +1004, +549, +550, +551, +552, +553, +554, +555, +556, +828, +829, +830, +831, +832, +833, +199, +200, +201, +202, +128, +129, +61, +62, +63 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 68, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +203, +204, +205, +206, +207, +110, +111, +112, +113, +114, +115, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 13, +"tbk": 1, +"tl": 8021, +"mb": 13, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +145, +146, +147, +148, +149, +150, +151, +152, +153, +154, +155, +156, +157, +158, +159, +160, +161, +162, +163, +164, +165, +166, +167, +168, +169, +170, +171, +172, +173, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 81, +"tbk": 1, +"tl": 42, +"mb": 81, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +960, +961, +962, +963, +964, +965, +966, +967, +61, +62, +63, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 0, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1263, +1264, +1265, +1266, +1323, +1564, +1436, +1437, +1438, +1439, +1440, +1441, +1442, +1443, +1444, +1445, +1446, +1447, +1448, +1449, +1450, +1451, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 96, +"tbk": 12, +"tl": 4539, +"mb": 48, +"mbk": 6, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +1766, +1595, +1596, +1597, +556, +198, +576, +577, +578, +579, +580, +581, +1568, +1569, +1570, +1571, +1572, +554, +555 +] +}, +{ +"tb": 76, +"tbk": 1, +"tl": 37, +"mb": 76, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +960, +961, +962, +963, +964, +965, +966, +967, +61, +62, +63, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1583, +1584, +1585, +1586, +1587, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92 +] +}, +{ +"tb": 87, +"tbk": 1, +"tl": 501, +"mb": 87, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +3357, +3358, +3359, +3360, +3361, +3362, +3363, +3364, +3365, +3366, +3367, +3368, +3369, +3370, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 324, +"tbk": 1, +"tl": 108, +"mb": 324, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +767, +768, +769, +770, +771, +772, +773, +61, +62, +63, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 480, +"tbk": 2, +"tl": 669, +"mb": 320, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1825, +1826, +1827, +1992, +1993, +1994, +1995, +1996, +1997, +1998, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 2778, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +2194, +2195, +2196, +2197, +2198, +2199, +2200, +2201, +2202, +172, +173, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 112, +"tbk": 3, +"tl": 20, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +1972, +1973, +1974, +1975, +1976, +1977, +1978, +1979, +1980, +1981, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 154, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +955, +956, +957, +958, +959, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 104, +"mb": 160, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +932, +933, +934, +935, +1598, +1599, +762, +763, +764, +765, +766, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 19, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +986, +987, +988, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 186, +"mb": 160, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1825, +1826, +1827, +1992, +1993, +1994, +1995, +1996, +1997, +1998, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 176, +"tbk": 16, +"tl": 673, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1061, +1062, +1063, +1064, +556, +576, +577, +578, +579, +580, +581, +198, +198, +199, +200, +201, +202, +128, +129, +130, +131, +132, +13, +14, +15 +] +}, +{ +"tb": 448, +"tbk": 3, +"tl": 75570904, +"mb": 256, +"mbk": 1, +"gb": 256, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1542, +1543, +1544, +1545, +1546, +1547, +1548, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +390, +391 +] +}, +{ +"tb": 8192, +"tbk": 41, +"tl": 3747487, +"mb": 768, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +791, +792, +793, +794, +795, +796, +797, +266, +267, +503, +504, +505, +506, +507, +508, +509, +510, +511, +512, +513, +514, +515, +516, +270, +271, +272, +24, +25 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2548, +2549, +2550, +2551, +11, +12, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 125, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +2426, +2427, +2428, +1324, +1325, +1326, +1327, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1110, +1111, +1112, +1113, +1054, +1055, +642, +643, +644, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 3288, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2008, +2009, +2010, +561, +562, +563, +564, +565, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 228, +"tbk": 1, +"tl": 75571588, +"mb": 228, +"mbk": 1, +"gb": 228, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +750, +751, +752, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +698, +391 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 607, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +861, +862, +863, +864, +865, +866, +867, +868, +556, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 60882, +"mb": 160, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1173, +1174, +1175, +1176, +1177, +1178, +762, +763, +764, +765, +766, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1903, +1904, +1905, +1906, +1907, +1908, +1909, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23 +] +}, +{ +"tb": 162, +"tbk": 2, +"tl": 577, +"mb": 108, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +3371, +3372, +3373, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 56, +"tbk": 1, +"tl": 75579187, +"mb": 56, +"mbk": 1, +"gb": 56, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +278, +279, +280, +281, +282, +283, +284, +285, +286, +287, +288, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 144, +"tbk": 1, +"tl": 75570502, +"mb": 144, +"mbk": 1, +"gb": 144, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +938, +939, +940, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +942, +391 +] +}, +{ +"tb": 320, +"tbk": 4, +"tl": 0, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1263, +1264, +1265, +1266, +1323, +937, +762, +763, +764, +765, +766, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 240, +"tbk": 2, +"tl": 75594335, +"mb": 192, +"mbk": 1, +"gb": 48, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +851, +852, +853, +854, +855, +856, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 1344, +"tbk": 3, +"tl": 669, +"mb": 768, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +946, +947, +948, +1760, +1761, +1762, +1763, +1764, +1765, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 2461, +"mb": 72, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1529, +1530, +1531, +1532, +1533, +561, +562, +563, +564, +565, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 192, +"tbk": 4, +"tl": 577, +"mb": 96, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1746, +1747, +1748, +1749, +1750, +716, +717, +718, +719, +720, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 27, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1731, +1732, +1733, +1734, +1735, +1736, +1737, +1738, +1739, +1740, +1741, +1742, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 196, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +861, +862, +863, +864, +865, +866, +867, +868, +556, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 954, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +19 +] +}, +{ +"tb": 2, +"tbk": 1, +"tl": 38, +"mb": 2, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +299, +300, +301, +302, +303, +304, +305, +306, +307, +308, +309, +310, +311, +312, +61, +62, +63, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1049, +1050, +1051, +1052, +1053, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 2660, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +2194, +2195, +2196, +2197, +2198, +2199, +2200, +2201, +2202, +172, +173, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 75570353, +"mb": 160, +"mbk": 1, +"gb": 160, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +750, +751, +752, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +941, +391 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 75630569, +"mb": 80, +"mbk": 1, +"gb": 80, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +65, +66, +67, +68, +69, +70, +71, +72, +73, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 1352, +"tbk": 1, +"tl": 121, +"mb": 1352, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +1103, +1104, +1105, +1106, +1107, +1108, +1109, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 9184, +"tbk": 15, +"tl": 4626, +"mb": 4096, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +824, +825, +826, +827, +191, +828, +829, +830, +831, +832, +833, +199, +200, +201, +202, +128, +129, +61, +62, +63 +] +}, +{ +"tb": 2048, +"tbk": 64, +"tl": 19832, +"mb": 416, +"mbk": 13, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +541, +542, +543, +544, +545, +1595, +1596, +1597, +191, +576, +577, +578, +579, +580, +581, +198, +776, +777, +778 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 1805, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +526, +527 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 1362, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +932, +933, +934, +935, +936, +937, +762, +763, +764, +765, +766, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 20412, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1386, +1387, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92 +] +}, +{ +"tb": 448, +"tbk": 7, +"tl": 186, +"mb": 448, +"mbk": 7, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +2348, +2349, +2350, +2351, +2352, +2353, +2354, +322, +323, +324, +325, +326, +327, +328, +13, +14, +15, +16, +17, +18, +116 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 75570380, +"mb": 160, +"mbk": 1, +"gb": 160, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +938, +939, +940, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +941, +391 +] +}, +{ +"tb": 178247040, +"tbk": 140, +"tl": 4140954, +"mb": 8912896, +"mbk": 1, +"gb": 8912896, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +1203, +2223, +2224, +2225, +3374, +3375, +3376, +1875, +1876, +1877, +1878, +1879, +1880, +1881, +1882, +1883, +1217, +225, +226, +227, +24, +25, +26 +] +}, +{ +"tb": 10, +"tbk": 1, +"tl": 77515149, +"mb": 10, +"mbk": 1, +"gb": 10, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +3377, +3378, +3379, +3380, +3381, +3382, +3383, +3384, +3385, +3386, +3387, +3388, +3389, +3390, +3391, +3392, +3393, +3394, +3395, +3396, +3397, +3398, +3399, +3400, +3401, +3402, +26 +] +}, +{ +"tb": 176, +"tbk": 18, +"tl": 8489, +"mb": 128, +"mbk": 12, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +1766, +1595, +1596, +1597, +556, +576, +577, +578, +579, +580, +581, +198, +198, +199, +200, +201, +202 +] +}, +{ +"tb": 560, +"tbk": 10, +"tl": 25459, +"mb": 560, +"mbk": 10, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1348, +1349, +1350, +1351, +1352, +1353, +1354, +1355, +1356, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 640, +"tbk": 1, +"tl": 0, +"mb": 640, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1637, +1638, +1639, +1640, +1641, +1642, +1643, +423, +424, +425, +426, +427, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 320000, +"tbk": 1, +"tl": 20261, +"mb": 320000, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2465, +2466, +2467, +2468, +2469, +2470, +2471, +2472, +2473, +2474, +189, +190, +191, +198, +192, +193, +194, +195, +196, +197, +198, +199, +200, +201, +202, +128, +129 +] +}, +{ +"tb": 384, +"tbk": 3, +"tl": 10480, +"mb": 384, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1236, +1237, +1238, +1239, +1240, +1241, +1242, +1243, +1244, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 69, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1290, +1291, +1292, +1293, +1294, +176, +177, +178, +179, +180, +181, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 568, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +678, +679, +680, +681, +682, +199, +200, +201, +202, +128, +129, +130, +131, +132, +13, +14, +15, +16, +17, +18, +298 +] +}, +{ +"tb": 424, +"tbk": 1, +"tl": 75571214, +"mb": 424, +"mbk": 1, +"gb": 424, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +938, +939, +940, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +390, +391 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 75580402, +"mb": 160, +"mbk": 1, +"gb": 160, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +645, +646, +647, +648, +649, +650, +651, +652, +650, +653, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75571102, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1274, +1275, +1276, +1277, +1278, +1279, +1280, +1281, +1282, +1283, +1284, +1285, +1286, +1287, +1288, +1289, +377, +378, +379, +380, +381, +382, +383, +384, +385, +386, +387, +388, +389, +390, +391 +] +}, +{ +"tb": 896, +"tbk": 3, +"tl": 75570061, +"mb": 512, +"mbk": 1, +"gb": 512, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +683, +684, +685, +686, +687, +688, +689, +690, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +753, +391 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 65, +"mb": 160, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +1103, +1104, +1105, +1106, +1107, +1108, +1109, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25 +] +}, +{ +"tb": 480, +"tbk": 2, +"tl": 0, +"mb": 320, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1825, +1826, +1827, +1828, +1829, +1830, +1831, +1832, +1833, +1834, +1835, +1836, +1837, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 75590663, +"mb": 80, +"mbk": 1, +"gb": 80, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1588, +1589, +1590, +1591, +1592, +1593, +1594, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 85, +"tbk": 29, +"tl": 21025, +"mb": 85, +"mbk": 29, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +228, +229, +230, +231, +232, +233, +234, +235, +236, +237, +238, +239, +240, +241, +242, +243, +244, +2793, +2794, +2795, +2796, +2797, +2798, +2799, +1844, +1845, +1846, +26 +] +}, +{ +"tb": 3840, +"tbk": 6, +"tl": 75579389, +"mb": 1536, +"mbk": 1, +"gb": 864, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1179, +1180, +1181, +1182, +1183, +1184, +1185, +1186, +61, +62, +63, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23 +] +}, +{ +"tb": 1350, +"tbk": 20, +"tl": 75571493, +"mb": 90, +"mbk": 1, +"gb": 90, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +3403, +3404, +3405, +3406, +3407, +3408, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 27, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +289, +290, +291, +292, +293, +294, +295, +296, +297, +61, +62, +63, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 2, +"tl": 370, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +576, +577, +578, +579, +580, +581, +834, +835, +836, +837, +838, +554, +555, +556, +198 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 2317, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +1137, +1138, +1139, +1140, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 2, +"tbk": 1, +"tl": 38, +"mb": 2, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +299, +300, +301, +302, +303, +304, +305, +306, +307, +308, +309, +310, +311, +312, +61, +62, +63, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 20, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1847, +1848, +1849, +1850, +1851, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23 +] +}, +{ +"tb": 17, +"tbk": 3, +"tl": 0, +"mb": 6, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +3409, +3410, +3411, +3412, +3413, +3414, +3415, +3416, +3417, +3418, +3419, +3420, +3421, +907, +908, +909, +910, +911, +912, +913, +914, +915, +916, +917, +918, +919, +920, +921, +922, +923, +924, +925, +926, +927, +928, +929, +930, +931, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 18, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +359, +360, +361, +362, +363, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 75600438, +"mb": 16, +"mbk": 1, +"gb": 16, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1197, +1198, +1199, +1200, +1201, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 48, +"tbk": 3, +"tl": 888, +"mb": 32, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +576, +577, +578, +579, +580, +581, +198, +198, +199, +200, +201, +202, +128, +129 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 75599522, +"mb": 16, +"mbk": 1, +"gb": 16, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1197, +1198, +1199, +1200, +1201, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 1448, +"tbk": 1, +"tl": 75571820, +"mb": 1448, +"mbk": 1, +"gb": 1448, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1268, +1269, +1270, +1271, +1272, +1273, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 3, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1110, +1111, +1112, +1113, +748, +749, +746, +747, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23 +] +}, +{ +"tb": 400, +"tbk": 1, +"tl": 75574429, +"mb": 400, +"mbk": 1, +"gb": 400, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +879, +880, +881, +882, +883, +884, +130, +131, +132, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75570326, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +596, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +941, +391, +609, +610, +611, +612 +] +}, +{ +"tb": 176, +"tbk": 1, +"tl": 75580526, +"mb": 176, +"mbk": 1, +"gb": 176, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1936, +1937, +1938, +1939, +1940, +1941, +1942, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 105, +"tbk": 2, +"tl": 114, +"mb": 70, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +1573, +1574, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576, +1575, +1576, +1577, +1578, +1579, +1580, +1581, +1582, +2639, +2640, +2641 +] +}, +{ +"tb": 24, +"tbk": 2, +"tl": 75581651, +"mb": 16, +"mbk": 1, +"gb": 8, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +517, +518, +519, +520, +521, +522, +523, +524, +525, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 212, +"tbk": 1, +"tl": 75571287, +"mb": 212, +"mbk": 1, +"gb": 212, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +750, +751, +752, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +390, +391 +] +}, +{ +"tb": 988, +"tbk": 2, +"tl": 77514231, +"mb": 988, +"mbk": 2, +"gb": 656, +"gbk": 1, +"eb": 656, +"ebk": 1, +"fs": [ +3422, +3423, +3424, +3425, +3426, +3427, +3428, +3429, +3430, +3431, +3432, +3433, +3434, +3435, +3436, +3437, +3438, +3439, +3440, +3441, +3442, +3443, +3444, +3445, +898, +899, +900, +901, +902, +903, +904, +905, +906, +907, +908, +909, +910, +911, +912, +913, +914, +915, +916, +917, +918, +919, +920 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 1574, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +3446, +3447, +3448, +3449, +3450, +3451, +3452, +3453, +3454, +3455, +3456, +3457, +3458, +3459, +3460, +138, +139, +140, +141, +142, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 112, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +774, +775, +199, +200, +201, +202, +128, +129, +61, +62, +63, +13, +14, +15, +16, +17, +18 +] +}, +{ +"tb": 648, +"tbk": 3, +"tl": 10549, +"mb": 648, +"mbk": 3, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1187, +1188, +1189, +1190, +1191, +1192, +1193, +1194, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 75575453, +"mb": 160, +"mbk": 1, +"gb": 160, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +645, +646, +647, +648, +649, +650, +651, +652, +650, +653, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 108, +"tbk": 1, +"tl": 75570297, +"mb": 108, +"mbk": 1, +"gb": 108, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1088, +1089, +1090, +1091, +1092, +1093, +1094, +1095, +1096, +1097, +1098, +1099, +1100, +1101, +1102, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +941, +391 +] +}, +{ +"tb": 212, +"tbk": 1, +"tl": 173, +"mb": 212, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +767, +768, +769, +770, +771, +772, +773, +130, +131, +132, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 4, +"tbk": 1, +"tl": 75612691, +"mb": 4, +"mbk": 1, +"gb": 4, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1030, +1031, +1032, +1033, +1034, +1035, +1036, +1037, +1038, +1039, +1040, +130, +131, +132, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +596, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +390 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 9257, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +861, +862, +863, +864, +865, +866, +867, +868, +556, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 0, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1583, +1584, +1585, +1586, +1587, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2548, +2549, +2550, +2551, +642, +643, +644, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 2688, +"tbk": 3, +"tl": 77512979, +"mb": 1536, +"mbk": 1, +"gb": 1536, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +3461, +3462, +3463, +3464, +3465, +3466, +3467, +3468, +3469, +2116, +2117, +2118, +2119, +2120, +2121, +2122, +2123, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 75571475, +"mb": 72, +"mbk": 1, +"gb": 72, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +441, +442, +443, +444, +445, +446, +447, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +698, +391 +] +}, +{ +"tb": 316, +"tbk": 1, +"tl": 75570261, +"mb": 316, +"mbk": 1, +"gb": 316, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +750, +751, +752, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +941, +391 +] +}, +{ +"tb": 4, +"tbk": 1, +"tl": 75588947, +"mb": 4, +"mbk": 1, +"gb": 4, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1030, +1031, +1032, +1033, +1034, +1035, +1036, +1037, +1038, +1039, +1040, +61, +62, +63, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75580951, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +278, +279, +280, +281, +282, +283, +284, +285, +286, +287, +288, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 67, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +289, +290, +291, +292, +293, +294, +295, +296, +297, +130, +131, +132, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 400, +"tbk": 1, +"tl": 75579379, +"mb": 400, +"mbk": 1, +"gb": 400, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +879, +880, +881, +882, +883, +884, +61, +62, +63, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 128, +"tbk": 1, +"tl": 20236, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +182, +183, +184, +185, +186, +187, +188, +189, +190, +191, +198, +192, +193, +194, +195, +196, +197, +198, +199, +200, +201, +202 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75569998, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +587, +588, +589, +590, +591, +592, +593, +594, +595, +596, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +753, +391, +609, +610, +611, +612 +] +}, +{ +"tb": 1920, +"tbk": 4, +"tl": 173, +"mb": 1024, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +93, +94, +95, +96, +97, +98, +99, +100, +101, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +298 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 0, +"mb": 160, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1825, +1826, +1827, +1828, +1829, +1830, +1831, +1832, +1833, +1834, +1835, +1836, +1837, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 3, +"tl": 64, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1, +2, +3, +4, +5, +6, +7, +8, +9, +10, +746, +747, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 77515025, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +3470, +3471, +3472, +3473, +3474, +3475, +3476, +3477, +3478, +3479, +3480, +3481, +3482, +26 +] +}, +{ +"tb": 616, +"tbk": 2, +"tl": 75570932, +"mb": 616, +"mbk": 2, +"gb": 408, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1088, +1089, +1090, +1091, +1092, +1093, +1094, +1095, +1096, +1097, +1098, +1099, +3483, +3484, +3485, +3486, +2504, +2505, +2506, +2434, +2435, +379, +380, +381, +382, +383, +384, +385, +386, +387, +388, +389 +] +}, +{ +"tb": 1352, +"tbk": 1, +"tl": 29, +"mb": 1352, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +57, +58, +59, +60, +130, +131, +132, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 328, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +103, +104 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 75576420, +"mb": 48, +"mbk": 1, +"gb": 48, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +278, +279, +280, +281, +282, +283, +284, +285, +286, +287, +288, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 27, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1610, +1611, +1612, +1613, +1614, +1615, +130, +131, +132, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 1484, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +779, +780, +781, +782, +783, +784, +762, +763, +764, +765, +766, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 224, +"tbk": 6, +"tl": 384, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +824, +825, +826, +827, +549, +550, +551, +552, +553, +554, +555, +556, +828, +829, +830, +831, +832, +833, +199, +200, +201, +202 +] +}, +{ +"tb": 480, +"tbk": 2, +"tl": 223, +"mb": 320, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1825, +1826, +1827, +1992, +1993, +1994, +1995, +1996, +1997, +1998, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +474, +475, +1482, +1483, +1484, +1485, +13, +14, +15, +16, +17, +18, +298 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 75575633, +"mb": 32, +"mbk": 1, +"gb": 32, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1520, +1521, +1522, +1523, +1524, +1525, +1526, +1527, +1528, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 1352, +"tbk": 1, +"tl": 72902896, +"mb": 1352, +"mbk": 1, +"gb": 1352, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +938, +939, +940, +449, +450, +451, +452, +453, +454, +455, +456, +457, +458, +459, +460, +461, +462, +463, +464, +465, +223 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 75579834, +"mb": 96, +"mbk": 1, +"gb": 96, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1218, +1219, +1220, +1221, +1222, +1223, +1224, +130, +131, +132, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +596, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +698 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 148, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +576, +577, +578, +579, +580, +581, +198, +199, +200, +201, +202, +128, +129, +130, +131, +132 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 75581183, +"mb": 16, +"mbk": 1, +"gb": 16, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1197, +1198, +1199, +1200, +1201, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 120, +"tbk": 1, +"tl": 9, +"mb": 120, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1295, +1296, +1297, +1298, +1299, +1300, +1301, +1302, +1303, +1304, +1305, +1306, +1307, +1308, +1309, +1310, +1311, +1312, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 28, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +289, +290, +291, +292, +293, +294, +295, +296, +297, +61, +62, +63, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 164, +"tbk": 8, +"tl": 113, +"mb": 72, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +721, +722, +723, +724, +725, +726, +727, +728, +729, +730, +138, +139, +140, +141, +142, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 34, +"tbk": 1, +"tl": 77515108, +"mb": 34, +"mbk": 1, +"gb": 34, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +3487, +3488, +3489, +3490, +3491, +3492, +3493, +3494, +3495, +3496, +3497, +3498, +3499, +3500, +3501, +3502, +3503, +3504, +3505, +3506, +3507, +3508, +3509, +3510, +3511, +3512, +26 +] +}, +{ +"tb": 8, +"tbk": 1, +"tl": 927, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +861, +862, +863, +864, +865, +866, +867, +868, +556, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 4344, +"tbk": 6, +"tl": 75585599, +"mb": 1536, +"mbk": 1, +"gb": 1368, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1179, +1180, +1181, +1182, +1183, +1184, +1185, +1186, +130, +131, +132, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23 +] +}, +{ +"tb": 22, +"tbk": 1, +"tl": 1, +"mb": 22, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +2185, +2317, +2318, +2319, +2320, +2321, +2322, +2323, +2324, +2325, +2326, +3513, +3514, +3515, +2327, +2328, +2329, +2330, +2331, +3516, +3517, +3518, +3519, +26 +] +}, +{ +"tb": 32, +"tbk": 2, +"tl": 1814, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +198, +576, +577, +578, +579, +580, +581, +549, +550, +551, +552, +553, +554, +555, +198 +] +}, +{ +"tb": 40, +"tbk": 2, +"tl": 75579844, +"mb": 32, +"mbk": 1, +"gb": 8, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +845, +846, +847, +848, +849, +850, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23 +] +}, +{ +"tb": 228, +"tbk": 1, +"tl": 83, +"mb": 228, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +428, +429, +430, +431, +432, +433, +434, +435, +436, +437, +438, +439, +440, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 57, +"tbk": 2, +"tl": 118, +"mb": 38, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +1573, +1574, +1575, +1576, +1575, +1576, +1575, +1576, +1577, +1578, +1579, +1580, +1581, +1582, +1656, +1657, +1658, +270, +271, +272 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +596, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +941 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 1428, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1255, +1256, +1257, +1258, +937, +762, +763, +764, +765, +766, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 1384448, +"tbk": 11, +"tl": 75609892, +"mb": 524288, +"mbk": 1, +"gb": 336896, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +733, +734, +735, +736, +737, +738, +739, +740, +741, +742, +743, +744, +745, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 1926, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1173, +1174, +1175, +1176, +1177, +1178, +762, +763, +764, +765, +766, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 212, +"tbk": 1, +"tl": 20, +"mb": 212, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +57, +58, +59, +60, +130, +131, +132, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 2242, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +1794, +1795, +1796, +1797, +1798, +1799, +1800, +1801, +1802, +1803, +1804, +1805, +1806, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 768, +"tbk": 4, +"tl": 272, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +943, +944, +945, +1757, +1758, +1759, +762, +763, +764, +765, +766, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 8, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +2552, +2553, +2554, +2555, +2556, +2557, +2558, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 9, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +582, +583, +584, +585, +586, +61, +62, +63, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25 +] +}, +{ +"tb": 80, +"tbk": 2, +"tl": 75574529, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +998, +999, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 36, +"tbk": 1, +"tl": 75571961, +"mb": 36, +"mbk": 1, +"gb": 36, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +869, +870, +871, +872, +873, +874, +875, +876, +877, +878, +61, +62, +63, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 240, +"tbk": 2, +"tl": 75579843, +"mb": 192, +"mbk": 1, +"gb": 48, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +851, +852, +853, +854, +855, +856, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +298, +20, +21, +22, +23 +] +}, +{ +"tb": 640000, +"tbk": 2, +"tl": 2568, +"mb": 320000, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2465, +2466, +2467, +2468, +2469, +2470, +2471, +2472, +2473, +2474, +189, +190, +556, +198, +576, +577, +578, +579, +580, +581, +549, +550, +551, +552, +553, +554, +555, +198 +] +}, +{ +"tb": 79, +"tbk": 1, +"tl": 37, +"mb": 79, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +960, +961, +962, +963, +964, +965, +966, +967, +61, +62, +63, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 28, +"tbk": 1, +"tl": 18, +"mb": 28, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +57, +58, +59, +60, +130, +131, +132, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92 +] +}, +{ +"tb": 3936, +"tbk": 6, +"tl": 75577110, +"mb": 1536, +"mbk": 1, +"gb": 960, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1179, +1180, +1181, +1182, +1183, +1184, +1185, +1186, +130, +131, +132, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23 +] +}, +{ +"tb": 640000, +"tbk": 2, +"tl": 1855, +"mb": 320000, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2465, +2466, +2467, +2468, +2469, +2470, +2471, +2472, +2473, +2474, +189, +190, +549, +550, +551, +552, +553, +554, +555, +556, +198, +576, +577, +578, +579, +580, +581, +198 +] +}, +{ +"tb": 128, +"tbk": 1, +"tl": 337, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +989, +990, +991, +992, +993, +994, +995, +996, +997, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 183, +"tbk": 2, +"tl": 7, +"mb": 122, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +3520, +3521, +3522, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 10484480, +"tbk": 130, +"tl": 228550, +"mb": 524288, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2726, +2727, +2728, +2729, +2730, +2731, +2732, +2733, +2734, +2735, +2736, +2737, +2738, +2735, +2739, +2740, +2741, +1575, +1576, +1575, +1576, +1577, +1578, +1579, +1580, +1581, +1582, +2411, +2412, +504, +505, +506, +507, +508, +509, +510, +511, +512, +513, +514, +515, +516, +270, +271, +272, +24, +25 +] +}, +{ +"tb": 192, +"tbk": 1, +"tl": 0, +"mb": 192, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +2336, +2337, +2338, +2626, +2627, +2628, +2629, +2630, +2631, +2632, +1833, +1834, +1835, +1836, +1837, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 128, +"tbk": 2, +"tl": 258, +"mb": 128, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1, +2, +3, +4, +5, +6, +7, +8, +9, +10, +11, +12, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 448, +"tbk": 7, +"tl": 187, +"mb": 448, +"mbk": 7, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +2348, +2349, +2350, +2351, +2352, +2353, +2354, +322, +323, +324, +325, +326, +327, +328, +13, +14, +15, +16, +17, +18, +74 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 0, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1, +2, +3, +4, +5, +6, +7, +8, +9, +10, +1171, +1172, +1114, +1115, +1116, +1117, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 1494, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +857, +858, +859, +860, +762, +763, +764, +765, +766, +16, +17, +18, +298, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 1477, +"tbk": 1, +"tl": 41, +"mb": 1477, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +960, +961, +962, +963, +964, +965, +966, +967, +61, +62, +63, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 616, +"tbk": 2, +"tl": 75571071, +"mb": 616, +"mbk": 2, +"gb": 408, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1088, +1089, +1090, +1091, +1092, +1093, +1094, +1095, +1096, +1097, +1098, +1099, +3483, +3484, +3485, +3486, +3280, +3281, +3282, +377, +378, +379, +380, +381, +382, +383, +384, +385, +386, +387, +388, +389 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 75587358, +"mb": 80, +"mbk": 1, +"gb": 80, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1588, +1589, +1590, +1591, +1592, +1593, +1594, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 72, +"tbk": 1, +"tl": 75570566, +"mb": 72, +"mbk": 1, +"gb": 72, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +441, +442, +443, +444, +445, +446, +447, +448, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +942, +391 +] +}, +{ +"tb": 5896, +"tbk": 1, +"tl": 72902795, +"mb": 5896, +"mbk": 1, +"gb": 5896, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +938, +939, +940, +1399, +1400, +1401, +1402, +1403, +1404, +1405, +1406, +457, +458, +459, +460, +461, +462, +463, +464, +465, +223 +] +}, +{ +"tb": 224, +"tbk": 3, +"tl": 2682, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +2656, +2657, +2658, +2659, +2660, +1595, +1596, +1597, +556, +198, +576, +577, +578, +579, +580, +581, +198 +] +}, +{ +"tb": 32, +"tbk": 2, +"tl": 364, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +198, +576, +577, +578, +579, +580, +581, +1568, +1569, +1570, +1571, +1572, +554, +555, +198 +] +}, +{ +"tb": 120, +"tbk": 2, +"tl": 75581905, +"mb": 96, +"mbk": 1, +"gb": 24, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +613, +614, +615, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 75630550, +"mb": 80, +"mbk": 1, +"gb": 80, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1588, +1589, +1590, +1591, +1592, +1593, +1594, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 176, +"tbk": 1, +"tl": 75583542, +"mb": 176, +"mbk": 1, +"gb": 176, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1936, +1937, +1938, +1939, +1940, +1941, +1942, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +474, +475, +1482, +1483, +1484, +1485, +13, +14, +15, +16, +17, +18, +88, +89 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 18, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +932, +933, +934, +935, +1598, +1599, +762, +763, +764, +765, +766, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 28, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1610, +1611, +1612, +1613, +1614, +1615, +61, +62, +63, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 640, +"tbk": 3, +"tl": 19, +"mb": 416, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +174, +175, +176, +177, +178, +179, +180, +181, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 3843, +"mb": 160, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +932, +933, +934, +935, +936, +937, +762, +763, +764, +765, +766, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 2, +"tl": 2409, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2023, +2024, +2025, +705, +706, +707, +708, +709, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 2, +"tl": 15651, +"mb": 32, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1565, +1566, +1567, +561, +562, +563, +564, +565, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 118436, +"tbk": 4, +"tl": 73716540, +"mb": 101392, +"mbk": 2, +"gb": 67592, +"gbk": 1, +"eb": 67592, +"ebk": 1, +"fs": [ +1486, +1487, +1488, +1489, +1490, +1491, +1492, +1493, +1494, +1495, +1496, +1497, +3523, +3524, +3525, +1501, +1502, +1503, +1504, +1505, +1506, +1507, +1508, +1509, +1510, +1511, +1512, +1513, +1514 +] +}, +{ +"tb": 224, +"tbk": 3, +"tl": 37, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1999, +2000, +2001, +2002, +2003, +2004, +2005, +2006, +2007, +322, +323, +324, +325, +326, +327, +328, +13, +14, +15, +16, +17, +18, +19 +] +}, +{ +"tb": 15727680, +"tbk": 140, +"tl": 20236173, +"mb": 786432, +"mbk": 1, +"gb": 786432, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +3283, +3284, +3285, +3526, +3527, +3528, +224, +225, +226, +227, +24, +25, +26 +] +}, +{ +"tb": 8064, +"tbk": 6, +"tl": 9, +"mb": 4096, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +791, +792, +793, +794, +795, +796, +797, +351, +352, +731, +732, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 320, +"tbk": 4, +"tl": 10850, +"mb": 320, +"mbk": 4, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1255, +1256, +1257, +1258, +937, +762, +763, +764, +765, +766, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 37, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1167, +1168, +1169, +1170, +11, +12, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 187, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +102, +61, +62, +63, +13, +14, +15, +16, +17, +18, +298 +] +}, +{ +"tb": 24, +"tbk": 1, +"tl": 75600465, +"mb": 24, +"mbk": 1, +"gb": 24, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +3529, +3530, +3531, +3532, +3533, +3534, +3535, +3536, +3537, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 144, +"tbk": 1, +"tl": 75570511, +"mb": 144, +"mbk": 1, +"gb": 144, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +938, +939, +940, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +942, +391 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 206, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1746, +1747, +1748, +1749, +1750, +716, +717, +718, +719, +720, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 3968, +"tbk": 5, +"tl": 708, +"mb": 2048, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +93, +94, +95, +96, +97, +98, +99, +100, +101, +102, +130, +131, +132, +13, +14, +15, +16, +17, +18, +103, +104 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 31, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +359, +360, +361, +362, +363, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92 +] +}, +{ +"tb": 1104, +"tbk": 2, +"tl": 679, +"mb": 736, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1388, +1389, +1390, +1391, +1392, +1393, +1394, +1395, +1396, +1397, +1398, +1844, +1845, +1846, +26 +] +}, +{ +"tb": 48, +"tbk": 1, +"tl": 0, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1515, +1516, +1517, +1518, +1519, +176, +177, +178, +179, +180, +181, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 958, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +774, +775, +839, +840, +841, +842, +843, +844, +776, +777, +778, +839, +840, +841, +842, +843, +844, +199, +200, +201, +202, +128, +129 +] +}, +{ +"tb": 135, +"tbk": 2, +"tl": 10, +"mb": 90, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +2916, +2917, +3538, +3539, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 25603840, +"tbk": 400060, +"tl": 2777471, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +3540, +3541, +3542, +3543, +3544, +3545, +3546, +3547, +3548, +3549, +3550, +1514, +2081, +2082, +2083, +24, +25, +26 +] +}, +{ +"tb": 316, +"tbk": 1, +"tl": 18, +"mb": 316, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +51, +52, +53, +54, +55, +56, +57, +58, +59, +60, +61, +62, +63, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23 +] +}, +{ +"tb": 350, +"tbk": 30, +"tl": 1059167, +"mb": 20, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +1573, +1574, +1575, +1576, +1577, +1578, +1579, +1580, +1581, +1582, +2411, +2412, +504, +505, +506, +507, +508, +509, +510, +511, +512, +513, +514, +515, +516, +270, +271, +272, +24, +25 +] +}, +{ +"tb": 2, +"tbk": 1, +"tl": 37, +"mb": 2, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +299, +300, +301, +302, +303, +304, +305, +306, +307, +308, +309, +310, +311, +312, +61, +62, +63, +13, +14, +15, +16, +17, +18, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 320000, +"tbk": 1, +"tl": 517, +"mb": 320000, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2465, +2466, +2467, +2468, +2469, +2470, +2471, +2472, +2473, +2474, +189, +190, +556, +576, +577, +578, +579, +580, +581, +198, +199, +200, +201, +202, +128, +129, +130, +131, +132 +] +}, +{ +"tb": 400060, +"tbk": 200030, +"tl": 18768, +"mb": 2, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2527, +2528, +2529, +2530, +2531, +2532, +2533, +2534, +3551, +3552, +3553, +3554, +2084, +2085, +2086, +2087, +2088, +2089, +2090, +2091, +2092, +2093, +2094, +2095, +2092, +2096, +2097, +1708, +223, +224, +225, +226, +227, +24, +25, +26 +] +}, +{ +"tb": 4709800, +"tbk": 581900, +"tl": 7816222, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +3555, +3556, +3557, +3558, +3559, +3560, +3561, +3562, +3563, +3564, +3234, +3235, +3236, +3237, +3238, +3239, +3240, +3241, +2850, +2851, +2852, +2853, +2854, +2855, +2856, +2857, +2858, +2859, +2860, +2861, +2862, +2863, +2864, +2865, +1883, +1217 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 9, +"mb": 160, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1825, +1826, +1827, +1828, +1829, +1830, +1831, +1832, +1833, +1834, +1835, +1836, +1837, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 366, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +2231, +2232, +2233, +2234, +576, +577, +578, +579, +580, +581, +198, +198, +199, +200, +201, +202, +128, +129 +] +}, +{ +"tb": 336, +"tbk": 7, +"tl": 0, +"mb": 48, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1515, +1516, +1517, +1518, +1519, +176, +177, +178, +179, +180, +181, +16, +17, +18, +74, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +474, +475, +476, +477, +478, +479, +13, +14, +15, +16, +17, +18, +88, +89 +] +}, +{ +"tb": 7824, +"tbk": 7, +"tl": 75571923, +"mb": 3072, +"mbk": 1, +"gb": 1776, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1179, +1180, +1181, +1182, +1183, +1184, +1185, +1186, +61, +62, +63, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25 +] +}, +{ +"tb": 720, +"tbk": 2, +"tl": 10, +"mb": 704, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +174, +175, +176, +177, +178, +179, +180, +181, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 160, +"tbk": 1, +"tl": 45, +"mb": 160, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1825, +1826, +1827, +1992, +1993, +1994, +1995, +1996, +1997, +1998, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 16000, +"tbk": 1, +"tl": 9223, +"mb": 16000, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1956, +1957, +1958, +1959, +1960, +1961, +1962, +1963, +1964, +1965, +1966, +556, +828, +829, +830, +831, +832, +833, +199, +200, +201, +202, +128, +129, +61, +62, +63, +13, +14, +15, +16, +17, +18, +88, +89 +] +}, +{ +"tb": 228, +"tbk": 1, +"tl": 75571606, +"mb": 228, +"mbk": 1, +"gb": 228, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +938, +939, +940, +691, +692, +693, +694, +695, +696, +697, +457, +458, +604, +605, +606, +607, +608, +698, +391 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 31052, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +2194, +2195, +2196, +2197, +2198, +2199, +2200, +2201, +2202, +172, +173, +88, +89, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 320, +"tbk": 4, +"tl": 11318, +"mb": 320, +"mbk": 4, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1173, +1174, +1175, +1176, +1177, +1178, +762, +763, +764, +765, +766, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 960, +"tbk": 4, +"tl": 2551, +"mb": 512, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +2235, +2236, +2237, +2238, +2239, +2240, +2241, +16, +17, +18, +103, +104, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 832, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2668, +2669, +2670, +2671, +2672, +2673, +2674, +2675, +2676, +2677, +2678, +2679, +1844, +1845, +1846, +26 +] +}, +{ +"tb": 32, +"tbk": 1, +"tl": 57, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +1606, +1607, +1608, +1609, +130, +131, +132, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 144, +"tbk": 1, +"tl": 75570493, +"mb": 144, +"mbk": 1, +"gb": 144, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +785, +786, +787, +788, +789, +790, +750, +751, +752, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +942, +391 +] +}, +{ +"tb": 48, +"tbk": 3, +"tl": 2929, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +276, +277, +198, +576, +577, +578, +579, +580, +581, +198, +199, +200, +201, +202, +128, +129 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 2687, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +117, +118, +119, +273, +274, +275, +774, +775, +192, +193, +194, +195, +196, +197, +198, +198, +199, +200, +201, +202, +128, +129 +] +}, +{ +"tb": 7944, +"tbk": 7, +"tl": 75576666, +"mb": 3072, +"mbk": 1, +"gb": 1896, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +1179, +1180, +1181, +1182, +1183, +1184, +1185, +1186, +61, +62, +63, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 27, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1610, +1611, +1612, +1613, +1614, +1615, +130, +131, +132, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 75571332, +"mb": 80, +"mbk": 1, +"gb": 80, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +2390, +2391, +2392, +2393, +2394, +2395, +2396, +2397, +2398, +457, +458, +604, +605, +606, +607, +608, +390, +391, +609, +610, +611, +612, +24, +25, +26 +] +}, +{ +"tb": 9, +"tbk": 1, +"tl": 9, +"mb": 9, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +466, +467, +468, +469, +470, +471, +472, +473, +596, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +698 +] +}, +{ +"tb": 4, +"tbk": 1, +"tl": 75571998, +"mb": 4, +"mbk": 1, +"gb": 4, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1030, +1031, +1032, +1033, +1034, +1035, +1036, +1037, +1038, +1039, +1040, +61, +62, +63, +13, +14, +15, +16, +17, +18, +208, +209, +210, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 6, +"tl": 507, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1061, +1062, +1063, +1064, +556, +198, +576, +577, +578, +579, +580, +581, +834, +835, +836, +837, +838, +554, +555, +198, +576, +577, +578, +579, +580, +581, +198 +] +}, +{ +"tb": 80, +"tbk": 2, +"tl": 75577197, +"mb": 64, +"mbk": 1, +"gb": 64, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +998, +999, +616, +617, +618, +619, +130, +131, +132, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 256, +"tbk": 2, +"tl": 15837, +"mb": 256, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1236, +1237, +1238, +1239, +1946, +1947, +1948, +1949, +1950, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 2, +"tbk": 1, +"tl": 36, +"mb": 2, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +299, +300, +301, +302, +303, +304, +305, +306, +307, +308, +309, +310, +311, +312, +130, +131, +132, +13, +14, +15, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 576, +"tbk": 4, +"tl": 13672, +"mb": 576, +"mbk": 4, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +557, +558, +559, +560, +561, +562, +563, +564, +565, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 135, +"tbk": 2, +"tl": 17, +"mb": 90, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1407, +1408, +1409, +1410, +1411, +1412, +1413, +1414, +1415, +1416, +1417, +1418, +2916, +2917, +3565, +3566, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 64, +"tbk": 1, +"tl": 7794, +"mb": 64, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +675, +676, +677, +1137, +1138, +1139, +1140, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 3, +"tl": 0, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1110, +1111, +1112, +1113, +748, +749, +746, +747, +748, +749, +11, +12, +13, +14, +15, +16, +17, +18, +74, +20, +21, +22, +23 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 15329, +"mb": 160, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +133, +134, +135, +136, +2245, +138, +139, +140, +141, +142, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 40, +"tbk": 1, +"tl": 75576549, +"mb": 40, +"mbk": 1, +"gb": 40, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1118, +1119, +1120, +1121, +1122, +1123, +16, +17, +18, +19, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 10, +"tbk": 10, +"tl": 1060440, +"mb": 1, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +3567, +3568, +3569, +3570, +3571, +3572, +3573, +3574, +3575, +3576, +3577, +3578, +3579, +3580, +3581, +503, +504, +505, +506, +507, +508, +509, +510, +511, +512, +513, +514, +515, +516, +270, +271, +272, +24, +25, +26 +] +}, +{ +"tb": 4, +"tbk": 1, +"tl": 75585740, +"mb": 4, +"mbk": 1, +"gb": 4, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1030, +1031, +1032, +1033, +1034, +1035, +1036, +1037, +1038, +1039, +1040, +130, +131, +132, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 96, +"tbk": 1, +"tl": 375, +"mb": 96, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +329, +330, +331, +353, +354, +355, +356, +357, +358, +1370, +1371, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 28, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +203, +204, +205, +206, +207, +110, +111, +112, +113, +114, +115, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 63, +"tbk": 3, +"tl": 75570962, +"mb": 36, +"mbk": 1, +"gb": 36, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +49, +50, +1855, +1856, +1857, +1858, +1859, +1860, +1861, +1862, +1863, +2429, +2430, +2431, +2432, +2433, +2434, +2435, +379, +380, +381, +382, +383, +384, +385, +386, +387, +388, +389 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 0, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1255, +1256, +1257, +1258, +1324, +1325, +1326, +1327, +13, +14, +15, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 224, +"tbk": 3, +"tl": 173, +"mb": 128, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +48, +538, +539, +540, +2656, +2657, +2658, +2659, +2660, +1595, +1596, +1597, +556, +576, +577, +578, +579, +580, +581, +198, +199, +200, +201, +202 +] +}, +{ +"tb": 150, +"tbk": 4, +"tl": 378, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +47, +480, +2451, +2452, +3582, +3583, +3584, +3585, +3586, +3587, +3588, +3589, +3590, +3591, +3592, +3593, +3594, +3595, +3596, +3597, +3598, +3599, +3600, +914, +915, +916, +917, +918, +919, +920, +921, +922, +923, +924, +925, +926, +927, +928, +929, +930, +931, +26 +] +}, +{ +"tb": 400, +"tbk": 1, +"tl": 75573992, +"mb": 400, +"mbk": 1, +"gb": 400, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +879, +880, +881, +882, +883, +884, +61, +62, +63, +13, +14, +15, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 3200000, +"tbk": 100000, +"tl": 9502, +"mb": 32, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +2586, +2587, +2588, +2589, +2590, +2591, +2592, +2593, +2594, +2595, +2596, +2597, +941, +391, +609, +610, +611, +612, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 1, +"tl": 122, +"mb": 16, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +1247, +1248, +1249, +1250, +1251, +1252, +1253, +1254, +191, +199, +200, +201, +202, +128, +129, +61, +62, +63, +13, +14, +15, +16, +17, +18, +143, +144, +90, +91, +92 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 70, +"mb": 80, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +203, +204, +205, +206, +207, +110, +111, +112, +113, +114, +115, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 16, +"tbk": 2, +"tl": 1860, +"mb": 8, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +566, +567, +568, +569, +570, +571, +572, +573, +574, +1766, +546, +547, +548, +556, +198, +576, +577, +578, +579, +580, +581, +549, +550, +551, +552, +553, +554, +555 +] +}, +{ +"tb": 2, +"tbk": 1, +"tl": 37, +"mb": 2, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +299, +300, +301, +302, +303, +304, +305, +306, +307, +308, +309, +310, +311, +312, +61, +62, +63, +13, +14, +15, +16, +17, +18, +64, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 80, +"tbk": 1, +"tl": 75598900, +"mb": 80, +"mbk": 1, +"gb": 80, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1588, +1589, +1590, +1591, +1592, +1593, +1594, +16, +17, +18, +526, +527, +90, +91, +92, +24, +25, +26 +] +}, +{ +"tb": 160, +"tbk": 2, +"tl": 4104, +"mb": 160, +"mbk": 2, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +779, +780, +781, +782, +783, +784, +762, +763, +764, +765, +766, +16, +17, +18, +116, +20, +21, +22, +23, +24, +25, +26 +] +}, +{ +"tb": 108, +"tbk": 1, +"tl": 75570206, +"mb": 108, +"mbk": 1, +"gb": 108, +"gbk": 1, +"eb": 0, +"ebk": 0, +"fs": [ +1088, +1089, +1090, +1091, +1092, +1093, +1094, +1095, +1096, +1097, +1098, +1099, +1100, +1101, +1102, +448, +597, +598, +599, +600, +601, +602, +603, +457, +458, +604, +605, +606, +607, +608, +941, +391 +] +}, +{ +"tb": 40, +"tbk": 1, +"tl": 9, +"mb": 40, +"mbk": 1, +"gb": 0, +"gbk": 0, +"eb": 0, +"ebk": 0, +"fs": [ +3601, +3602, +907, +908, +909, +910, +911, +912, +913, +914, +915, +916, +917, +918, +919, +920, +921, +922, +923, +924, +925, +926, +927, +928, +929, +930, +931, +26 +] +} +], +"ftbl": [ +"[root]", +"0x10458d1c0: ::allocate (alloc/src/alloc.rs:250:14)", +"0x10458d1c0: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x10458d1c0: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x10458d1c0: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x10458d1c0: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x10458d1c0: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x10458d1c0: regex_syntax::hir::literal::Seq::cross_forward (src/hir/literal.rs:965:44)", +"0x10458d1c0: regex_syntax::hir::literal::Extractor::cross (src/hir/literal.rs:567:18)", +"0x10458be84: regex_syntax::hir::literal::Extractor::extract_concat (src/hir/literal.rs:407:24)", +"0x10458be84: regex_syntax::hir::literal::Extractor::extract (src/hir/literal.rs:189:45)", +"0x104548560: regex_automata::util::prefilter::prefixes (util/prefilter/mod.rs:658:39)", +"0x104548560: regex_automata::meta::strategy::new (src/meta/strategy.rs:112:24)", +"0x10454786c: regex_automata::meta::regex::Builder::build_many_from_hir (src/meta/regex.rs:3610:21)", +"0x10454786c: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3498:14)", +"0x10454786c: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x1045f1d60: regex::builders::Builder::build_one_string (regex-1.12.2/src/builders.rs:82:14)", +"0x1045f1d60: regex::builders::string::RegexBuilder::build (regex-1.12.2/src/builders.rs:233:26)", +"0x1045f1d60: regex::regex::string::Regex::new (src/regex/string.rs:181:31)", +"0x1045ecc2c: grimoire_css_lib::core::parser::parser_base::Parser::new (core/parser/parser_base.rs:35:38)", +"0x1042139ec: grimoire_css_lib::core::parser::parser_fs::ParserFs::new (core/parser/parser_fs.rs:37:26)", +"0x1042139ec: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::new (core/css_builder/css_builder_fs.rs:57:22)", +"0x1042139ec: grimoire_css_lib::commands::build::build (src/commands/build.rs:37:5)", +"0x1042139ec: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", +"0x104259664: grimoire_css_lib::start (grimoire-css/src/lib.rs:75:5)", +"0x104259664: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:164:11)", +"0x1040b9180: grimoire_css::main (grimoire-css/src/main.rs:32:8)", +"0x1040f1e14: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1040f1e14: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x1040f1e14: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x1040f1e14: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x1040f1e14: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1040f1e14: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x1040f1e14: nom::multi::many0::{{closure}} (src/multi/mod.rs:60:19)", +"0x1040f1e14: >::parse (nom-7.1.3/src/internal.rs:325:5)", +"0x1040f1e14: <(FnA,FnB) as nom::sequence::Tuple>::parse (src/sequence/mod.rs:246:28)", +"0x1040f1e14: nom::sequence::tuple::{{closure}} (src/sequence/mod.rs:278:17)", +"0x1040f1e14: nom::combinator::all_consuming::{{closure}} (src/combinator/mod.rs:390:26)", +"0x1040f1e14: nom::combinator::map::{{closure}} (src/combinator/mod.rs:79:30)", +"0x1040f1e14: browserslist::parser::parse_browserslist_query (browserslist-rs-0.19.0/src/parser.rs:452:5)", +"0x10425857c: browserslist::resolve (browserslist-rs-0.19.0/src/lib.rs:107:24)", +"0x10425857c: lightningcss::targets::Browsers::from_browserslist_with_config (lightningcss-1.0.0-alpha.68/src/targets.rs:64:25)", +"0x10425857c: lightningcss::targets::Browsers::from_browserslist (lightningcss-1.0.0-alpha.68/src/targets.rs:54:5)", +"0x10425857c: grimoire_css_lib::infrastructure::lightning_css_optimizer::LightningCssOptimizer::from_content (src/infrastructure/lightning_css_optimizer.rs:27:24)", +"0x10425857c: grimoire_css_lib::infrastructure::lightning_css_optimizer::LightningCssOptimizer::new (src/infrastructure/lightning_css_optimizer.rs:59:9)", +"0x10425857c: grimoire_css_lib::start (grimoire-css/src/lib.rs:73:25)", +"0x10425857c: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:164:11)", +"0x10413e3c4: ::alloc (dhat-0.3.3/src/lib.rs:1176:9)", +"0x1045f6460: alloc::raw_vec::finish_grow (src/raw_vec/mod.rs:0:0)", +"0x1045f3c3c: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x1045f3c3c: alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle (src/raw_vec/mod.rs:557:35)", +"0x10452f018: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", +"0x10452f018: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", +"0x10452f018: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", +"0x10452f018: alloc::vec::Vec::extend_with (src/vec/mod.rs:3355:14)", +"0x10452f018: alloc::vec::Vec::resize (src/vec/mod.rs:3234:18)", +"0x10452f018: regex_automata::util::sparse_set::SparseSet::resize (src/util/sparse_set.rs:137:21)", +"0x104552d80: regex_automata::util::sparse_set::SparseSet::new (src/util/sparse_set.rs:119:13)", +"0x104552d80: regex_automata::nfa::thompson::nfa::Inner::into_nfa (nfa/thompson/nfa.rs:1278:24)", +"0x104552d80: regex_automata::nfa::thompson::builder::Builder::build (nfa/thompson/builder.rs:592:29)", +"0x104552d80: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:1012:14)", +"0x104549ca0: regex_automata::nfa::thompson::compiler::Compiler::build_many_from_hir (nfa/thompson/compiler.rs:903:14)", +"0x104549ca0: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:519:22)", +"0x104549ca0: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", +"0x1045ecbc0: grimoire_css_lib::core::parser::parser_base::Parser::new (core/parser/parser_base.rs:32:32)", +"0x104547514: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104547514: alloc::boxed::Box::try_new_uninit_in (alloc/src/boxed.rs:508:19)", +"0x104547514: alloc::boxed::Box::new_uninit_in (alloc/src/boxed.rs:474:15)", +"0x104547514: as core::clone::Clone>::clone (alloc/src/boxed.rs:1739:25)", +"0x104547514: ::clone (src/hir/mod.rs:1963:10)", +"0x104547514: regex_automata::meta::regex::RegexInfo::new (src/meta/regex.rs:1940:41)", +"0x104547514: regex_automata::meta::regex::Builder::build_many_from_hir (src/meta/regex.rs:3609:20)", +"0x104547514: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3498:14)", +"0x104547514: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x1045ecbe4: grimoire_css_lib::core::parser::parser_base::Parser::new (core/parser/parser_base.rs:33:27)", +"0x1045473c8: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1045473c8: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x1045473c8: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x1045473c8: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x1045473c8: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1045473c8: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x1045473c8: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:54:33)", +"0x1045473c8: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x1045473c8: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x1045473c8: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x1045473c8: regex_automata::meta::regex::Builder::build_many_from_hir (src/meta/regex.rs:3608:67)", +"0x1045473c8: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3498:14)", +"0x1045473c8: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x1045ec970: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::new (core/css_generator/css_generator_base.rs:64:30)", +"0x1045ec970: grimoire_css_lib::core::css_builder::css_builder_base::CssBuilder::new (core/css_builder/css_builder_base.rs:46:29)", +"0x104211d6c: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::new (core/css_builder/css_builder_fs.rs:56:27)", +"0x104211d6c: grimoire_css_lib::commands::build::build (src/commands/build.rs:37:5)", +"0x104211d6c: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", +"0x10452df94: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x10452df94: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x10452df94: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x104530e68: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x104530e68: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x104530e68: regex_automata::nfa::thompson::builder::Builder::add (nfa/thompson/builder.rs:1118:21)", +"0x1045306cc: regex_automata::nfa::thompson::builder::Builder::add_union_reverse (nfa/thompson/builder.rs:743:14)", +"0x1045306cc: regex_automata::nfa::thompson::compiler::Compiler::add_union_reverse (nfa/thompson/compiler.rs:1682:35)", +"0x1045306cc: regex_automata::nfa::thompson::compiler::Compiler::c_at_least (nfa/thompson/compiler.rs:1265:26)", +"0x1045510d0: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:997:18)", +"0x1045ec9f0: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::new (core/css_generator/css_generator_base.rs:70:13)", +"0x1045ec9f0: grimoire_css_lib::core::css_builder::css_builder_base::CssBuilder::new (core/css_builder/css_builder_base.rs:46:29)", +"0x1045934a8: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x1045934a8: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x1045934a8: regex_syntax::hir::Properties::empty (src/hir/mod.rs:2429:20)", +"0x1045934a8: regex_syntax::hir::Hir::empty (src/hir/mod.rs:259:21)", +"0x1045934a8: ::drop (src/hir/mod.rs:0:0)", +"0x1045313c4: core::ptr::drop_in_place (src/ptr/mod.rs:804:1)", +"0x1045313c4: core::ptr::drop_in_place<[regex_syntax::hir::Hir]> (src/ptr/mod.rs:804:1)", +"0x1045313c4: as core::ops::drop::Drop>::drop (src/vec/mod.rs:3999:13)", +"0x1045313c4: core::ptr::drop_in_place> (src/ptr/mod.rs:804:1)", +"0x104547a50: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3499:5)", +"0x104547a50: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x1045ecc50: grimoire_css_lib::core::parser::parser_base::Parser::new (core/parser/parser_base.rs:36:33)", +"0x10452e32c: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x10452e32c: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x10452e32c: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x104570504: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x104570504: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x104570504: regex_automata::nfa::thompson::builder::Builder::start_pattern (nfa/thompson/builder.rs:630:28)", +"0x104570504: regex_automata::nfa::thompson::compiler::Compiler::start_pattern (nfa/thompson/compiler.rs:1641:35)", +"0x104570504: regex_automata::nfa::thompson::compiler::Compiler::compile::{{closure}} (nfa/thompson/compiler.rs:1001:26)", +"0x104570504: core::ops::function::impls:: for &mut F>::call_once (src/ops/function.rs:313:21)", +"0x104570504: core::option::Option::map (core/src/option.rs:1158:29)", +"0x104570504: as core::iter::traits::iterator::Iterator>::next (iter/adapters/map.rs:107:26)", +"0x104551118: regex_automata::nfa::thompson::compiler::Compiler::c_alt_iter (nfa/thompson/compiler.rs:1110:30)", +"0x104551118: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:1000:29)", +"0x104548bf4: regex_automata::nfa::thompson::compiler::Compiler::build_many_from_hir (nfa/thompson/compiler.rs:903:14)", +"0x104548bf4: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:471:14)", +"0x104548bf4: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", +"0x104597590: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x104597590: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x104597590: regex_syntax::hir::Properties::class (src/hir/mod.rs:2467:20)", +"0x104597590: regex_syntax::hir::Hir::class (src/hir/mod.rs:365:21)", +"0x104591164: ::visit_post (src/hir/translate.rs:0:0)", +"0x104546e50: regex_syntax::ast::visitor::HeapVisitor::visit (src/ast/visitor.rs:224:21)", +"0x104546e50: regex_syntax::ast::visitor::visit (src/ast/visitor.rs:119:24)", +"0x104546e50: regex_syntax::hir::translate::Translator::translate (src/hir/translate.rs:174:9)", +"0x104546e50: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3494:18)", +"0x104546e50: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x1045ec9a0: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::new (core/css_generator/css_generator_base.rs:67:25)", +"0x1045ec9a0: grimoire_css_lib::core::css_builder::css_builder_base::CssBuilder::new (core/css_builder/css_builder_base.rs:46:29)", +"0x1045f17c0: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1045f17c0: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x1045f17c0: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x1045f17c0: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x1045f17c0: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1045f17c0: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x1045f17c0: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x1045f17c0: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x1045f17c0: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", +"0x1045f17c0: alloc::str::::to_owned (alloc/src/str.rs:211:62)", +"0x1045f17c0: >::from (alloc/src/string.rs:3056:11)", +"0x1045f17c0: ::spec_to_string (alloc/src/string.rs:2977:21)", +"0x1045f17c0: ::to_string (alloc/src/string.rs:2809:9)", +"0x1045f17c0: regex::builders::Builder::new::{{closure}} (regex-1.12.2/src/builders.rs:66:63)", +"0x1045f17c0: core::iter::adapters::map::map_fold::{{closure}} (iter/adapters/map.rs:88:28)", +"0x1045f17c0: core::ops::try_trait::NeverShortCircuit::wrap_mut_2::{{closure}} (src/ops/try_trait.rs:401:39)", +"0x1045f17c0: core::array::iter::iter_inner::PolymorphicIter<[core::mem::maybe_uninit::MaybeUninit]>::try_fold::{{closure}} (array/iter/iter_inner.rs:220:13)", +"0x1045f17c0: ::try_fold (src/ops/index_range.rs:169:21)", +"0x1045f17c0: core::array::iter::iter_inner::PolymorphicIter<[core::mem::maybe_uninit::MaybeUninit]>::try_fold (array/iter/iter_inner.rs:215:20)", +"0x1045f17c0: core::array::iter::iter_inner::PolymorphicIter<[core::mem::maybe_uninit::MaybeUninit]>::fold (array/iter/iter_inner.rs:202:14)", +"0x1045f17c0: as core::iter::traits::iterator::Iterator>::fold (src/array/iter.rs:253:27)", +"0x1045f17c0: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/map.rs:128:19)", +"0x1045f17c0: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", +"0x1045f17c0: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3774:26)", +"0x1045f17c0: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", +"0x1045f17c0: as core::iter::traits::collect::Extend>::extend (src/vec/mod.rs:3702:9)", +"0x1045f17c0: regex::builders::Builder::new (regex-1.12.2/src/builders.rs:66:16)", +"0x1045f1a70: regex::builders::string::RegexBuilder::new (regex-1.12.2/src/builders.rs:224:37)", +"0x1045f1a70: regex::regex::string::Regex::new (src/regex/string.rs:181:9)", +"0x104580b18: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x104580b18: ::drop (src/ast/mod.rs:1657:25)", +"0x104531ff8: core::ptr::drop_in_place (src/ptr/mod.rs:804:1)", +"0x104547a6c: core::ptr::drop_in_place<[regex_syntax::ast::Ast]> (src/ptr/mod.rs:804:1)", +"0x104547a6c: as core::ops::drop::Drop>::drop (src/vec/mod.rs:3999:13)", +"0x104547a6c: core::ptr::drop_in_place> (src/ptr/mod.rs:804:1)", +"0x104547a6c: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3499:5)", +"0x104547a6c: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x10452dc10: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x10452dc10: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x10452dc10: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x104538928: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x104538928: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x104538928: regex_automata::nfa::thompson::compiler::Utf8Compiler::add_empty (nfa/thompson/compiler.rs:1863:31)", +"0x104538928: regex_automata::nfa::thompson::compiler::Utf8Compiler::new (nfa/thompson/compiler.rs:1791:15)", +"0x104535bec: regex_automata::nfa::thompson::compiler::Compiler::c_unicode_class (nfa/thompson/compiler.rs:1462:17)", +"0x104535bec: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1026:50)", +"0x1045304f8: regex_automata::nfa::thompson::compiler::Compiler::c_at_least (nfa/thompson/compiler.rs:1301:33)", +"0x104533c4c: regex_automata::nfa::thompson::compiler::Compiler::c::{{closure}} (nfa/thompson/compiler.rs:1030:68)", +"0x104533c4c: core::ops::function::impls:: for &mut F>::call_once (src/ops/function.rs:313:21)", +"0x104533c4c: core::option::Option::map (core/src/option.rs:1158:29)", +"0x104533c4c: as core::iter::traits::iterator::Iterator>::next (iter/adapters/map.rs:107:26)", +"0x104533c4c: regex_automata::nfa::thompson::compiler::Compiler::c_concat (nfa/thompson/compiler.rs:1045:71)", +"0x104533c4c: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1030:36)", +"0x104533528: regex_automata::nfa::thompson::compiler::Compiler::c_cap (nfa/thompson/compiler.rs:1157:26)", +"0x104570544: regex_automata::nfa::thompson::compiler::Compiler::compile::{{closure}} (nfa/thompson/compiler.rs:1002:28)", +"0x104570544: core::ops::function::impls:: for &mut F>::call_once (src/ops/function.rs:313:21)", +"0x104570544: core::option::Option::map (core/src/option.rs:1158:29)", +"0x104570544: as core::iter::traits::iterator::Iterator>::next (iter/adapters/map.rs:107:26)", +"0x1045933a8: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x1045933a8: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x1045933a8: regex_syntax::hir::Properties::empty (src/hir/mod.rs:2429:20)", +"0x1045933a8: regex_syntax::hir::Hir::empty (src/hir/mod.rs:259:21)", +"0x1045933a8: ::drop (src/hir/mod.rs:1931:49)", +"0x104213a5c: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::new (core/css_builder/css_builder_fs.rs:58:32)", +"0x104213a5c: grimoire_css_lib::commands::build::build (src/commands/build.rs:37:5)", +"0x104213a5c: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", +"0x1041720f0: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1041720f0: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x1041720f0: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x1041720f0: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x1041720f0: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1041720f0: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x1041720f0: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:31:34)", +"0x1041720f0: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x1041720f0: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x1041720f0: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x104224190: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::adapt_targets (core/css_generator/css_generator_base.rs:351:50)", +"0x104224190: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::generate_css (core/css_generator/css_generator_base.rs:176:22)", +"0x1042226bc: grimoire_css_lib::core::css_builder::css_builder_base::CssBuilder::build_joined_css_and_pieces (core/css_builder/css_builder_base.rs:219:59)", +"0x10421da28: grimoire_css_lib::core::css_builder::css_builder_base::CssBuilder::combine_spells_to_optimized_css_string (core/css_builder/css_builder_base.rs:95:38)", +"0x1042141f4: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::build (core/css_builder/css_builder_fs.rs:119:22)", +"0x1042141f4: grimoire_css_lib::commands::build::build (src/commands/build.rs:37:61)", +"0x1042141f4: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", +"0x104275298: ::allocate (core/css_builder/css_builder_base.rs:250:14)", +"0x104275298: alloc::raw_vec::RawVecInner::try_allocate_in (src/num/uint_macros.rs:476:47)", +"0x104275298: alloc::raw_vec::RawVecInner::with_capacity_in (src/num/uint_macros.rs:422:15)", +"0x104275298: alloc::raw_vec::RawVec::with_capacity_in (src/num/uint_macros.rs:190:20)", +"0x104275298: alloc::vec::Vec::with_capacity_in (src/fmt/rt.rs:929:20)", +"0x104275298: ::to_vec_in::ConvertVec>::to_vec (core/src/cell.rs:445:29)", +"0x104275298: alloc::slice::::to_vec_in (core/src/cell.rs:398:16)", +"0x104275298: alloc::slice::::to_vec (core/src/cell.rs:374:14)", +"0x104275298: alloc::slice::::to_owned (core/src/cell.rs:838:14)", +"0x104275298: alloc::str::::to_owned (src/util/captures.rs:211:62)", +"0x104275298: >::from (src/ptr/non_null.rs:3068:11)", +"0x104275298: ::spec_to_string (src/ptr/non_null.rs:2848:9)", +"0x104275298: ::to_string (src/ptr/non_null.rs:2809:9)", +"0x104275298: indicatif::style::segment::{{closure}} (src/util/search.rs:42:25)", +"0x104275298: core::ops::function::impls:: for &mut F>::call_once (src/raw/mod.rs:313:21)", +"0x104275298: core::option::Option::map (src/ptr/mod.rs:1158:29)", +"0x104275298: as core::iter::traits::iterator::Iterator>::next (src/hir/mod.rs:107:26)", +"0x104274ce8: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:25:41)", +"0x104274ce8: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/meta/regex.rs:34:9)", +"0x104274ce8: as core::iter::traits::collect::FromIterator>::from_iter (src/fmt/rt.rs:3633:9)", +"0x104274ce8: core::iter::traits::iterator::Iterator::collect (src/util/pool.rs:2027:9)", +"0x104274ce8: indicatif::style::ProgressStyle::new (src/util/search.rs:121:18)", +"0x104257038: indicatif::style::ProgressStyle::default_bar (indicatif-0.18.3/src/style.rs:73:9)", +"0x104257038: indicatif::state::BarState::new (indicatif-0.18.3/src/state.rs:32:20)", +"0x104257038: indicatif::progress_bar::ProgressBar::with_draw_target (indicatif-0.18.3/src/progress_bar.rs:74:40)", +"0x104257038: indicatif::progress_bar::ProgressBar::new_spinner (indicatif-0.18.3/src/progress_bar.rs:151:18)", +"0x104257038: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:156:14)", +"0x104145b50: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104145b50: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104145b50: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104145b50: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104145b50: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104145b50: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x104145b50: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:31:34)", +"0x104145b50: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x104145b50: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x104145b50: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x104145b50: glob::Pattern::new (glob-0.3.3/src/lib.rs:609:37)", +"0x104145654: glob::glob_with (glob-0.3.3/src/lib.rs:254:27)", +"0x104145654: glob::glob (glob-0.3.3/src/lib.rs:165:5)", +"0x10415d838: grimoire_css_lib::core::config::config_fs::ConfigFs::load_external_variables (core/config/config_fs.rs:727:15)", +"0x10415d838: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:184:28)", +"0x104215fb4: grimoire_css_lib::commands::init::init (src/commands/init.rs:23:11)", +"0x104211b48: grimoire_css_lib::commands::build::build (src/commands/build.rs:35:18)", +"0x104211b48: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", +"0x104531304: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x104531304: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x104531304: regex_automata::nfa::thompson::builder::Builder::patch (nfa/thompson/builder.rs:0:0)", +"0x104530730: regex_automata::nfa::thompson::compiler::Compiler::patch (nfa/thompson/compiler.rs:1637:35)", +"0x104530730: regex_automata::nfa::thompson::compiler::Compiler::c_at_least (nfa/thompson/compiler.rs:1268:22)", +"0x1045f1b78: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1045f1b78: alloc::sync::Arc<[T]>::allocate_for_slice::{{closure}} (alloc/src/sync.rs:2071:33)", +"0x1045f1b78: alloc::sync::Arc::allocate_for_layout (alloc/src/sync.rs:1984:19)", +"0x1045f1b78: alloc::sync::Arc<[T]>::allocate_for_slice (alloc/src/sync.rs:2069:13)", +"0x1045f1b78: alloc::sync::Arc<[T]>::copy_from_slice (alloc/src/sync.rs:2083:23)", +"0x1045f1b78: as alloc::sync::ArcFromSlice>::from_slice (alloc/src/sync.rs:2174:18)", +"0x1045f1b78: as core::convert::From<&[T]>>::from (alloc/src/sync.rs:3722:9)", +"0x1045f1b78: as core::convert::From<&str>>::from (alloc/src/sync.rs:3760:19)", +"0x1045f1b78: regex::builders::Builder::build_one_string (regex-1.12.2/src/builders.rs:78:23)", +"0x1045f1b78: regex::builders::string::RegexBuilder::build (regex-1.12.2/src/builders.rs:233:26)", +"0x1045f1b78: regex::regex::string::Regex::new (src/regex/string.rs:181:31)", +"0x104551554: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104551554: alloc::boxed::Box::try_new_uninit_in (alloc/src/boxed.rs:508:19)", +"0x104551554: alloc::boxed::Box::new_uninit_in (alloc/src/boxed.rs:474:15)", +"0x104551554: alloc::boxed::Box::new_uninit (alloc/src/boxed.rs:281:9)", +"0x104551554: as core::default::Default>::default (alloc/src/sync.rs:3561:21)", +"0x104551554: ::default (src/util/captures.rs:1450:24)", +"0x104551554: ::default (nfa/thompson/nfa.rs:1214:5)", +"0x104551554: regex_automata::nfa::thompson::builder::Builder::build (nfa/thompson/builder.rs:423:23)", +"0x104551554: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:1012:14)", +"0x1045ecc08: grimoire_css_lib::core::parser::parser_base::Parser::new (core/parser/parser_base.rs:34:38)", +"0x10455108c: ::allocate (alloc/src/alloc.rs:250:14)", +"0x10455108c: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x10455108c: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x10455108c: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x10455108c: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x10455108c: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x10455108c: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:54:33)", +"0x10455108c: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x10455108c: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x10455108c: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x10455108c: regex_syntax::hir::interval::IntervalSet::new (src/hir/interval.rs:74:52)", +"0x10455108c: regex_syntax::hir::ClassBytes::new (src/hir/mod.rs:1364:27)", +"0x10455108c: regex_syntax::hir::Hir::dot (src/hir/mod.rs:664:53)", +"0x10455108c: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:997:30)", +"0x10457b408: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x10457b408: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x10457b408: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x10458efbc: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x10458efbc: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x10458efbc: regex_syntax::hir::literal::PreferenceTrie::create_state (src/hir/literal.rs:2306:21)", +"0x10458efbc: regex_syntax::hir::literal::PreferenceTrie::root (src/hir/literal.rs:2299:18)", +"0x10458efbc: regex_syntax::hir::literal::PreferenceTrie::insert (src/hir/literal.rs:2269:29)", +"0x10458efbc: regex_syntax::hir::literal::PreferenceTrie::minimize::{{closure}} (src/hir/literal.rs:2244:46)", +"0x10458ed88: alloc::vec::Vec::retain_mut::process_loop (src/vec/mod.rs:2290:21)", +"0x10458ed88: alloc::vec::Vec::retain_mut (src/vec/mod.rs:2316:9)", +"0x10458ed88: regex_syntax::hir::literal::PreferenceTrie::minimize (src/hir/literal.rs:2244:18)", +"0x10458e364: regex_syntax::hir::literal::Seq::optimize_by_preference (src/hir/literal.rs:1854:17)", +"0x104548614: regex_syntax::hir::literal::Seq::optimize_for_prefix_by_preference (src/hir/literal.rs:1820:14)", +"0x104548614: regex_automata::util::prefilter::prefixes (util/prefilter/mod.rs:672:22)", +"0x104548614: regex_automata::meta::strategy::new (src/meta/strategy.rs:112:24)", +"0x10452e050: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x10452e050: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x10452e050: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x1045333b0: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x1045333b0: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x1045333b0: regex_automata::nfa::thompson::builder::Builder::add_capture_start (nfa/thompson/builder.rs:1007:31)", +"0x1045333b0: regex_automata::nfa::thompson::compiler::Compiler::add_capture_start (nfa/thompson/compiler.rs:1691:35)", +"0x1045333b0: regex_automata::nfa::thompson::compiler::Compiler::c_cap (nfa/thompson/compiler.rs:1156:26)", +"0x104146154: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104146154: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104146154: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104146154: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104146154: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104146154: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x104146154: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x104146154: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x104146154: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", +"0x104146154: alloc::str::::to_owned (alloc/src/str.rs:211:62)", +"0x104146154: >::from (alloc/src/string.rs:3056:11)", +"0x104146154: ::spec_to_string (alloc/src/string.rs:2977:21)", +"0x104146154: ::to_string (alloc/src/string.rs:2809:9)", +"0x104146154: glob::Pattern::new (glob-0.3.3/src/lib.rs:726:31)", +"0x104144f20: glob::glob_with (glob-0.3.3/src/lib.rs:213:13)", +"0x104144f20: glob::glob (glob-0.3.3/src/lib.rs:165:5)", +"0x10452eac4: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x10452eac4: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x10452eac4: regex_automata::nfa::thompson::range_trie::RangeTrie::add_empty (nfa/thompson/range_trie.rs:445:25)", +"0x10452e934: regex_automata::nfa::thompson::range_trie::RangeTrie::clear (nfa/thompson/range_trie.rs:239:14)", +"0x10452e934: regex_automata::nfa::thompson::range_trie::RangeTrie::new (nfa/thompson/range_trie.rs:231:14)", +"0x10452e934: regex_automata::nfa::thompson::compiler::Compiler::new (nfa/thompson/compiler.rs:746:38)", +"0x10454a008: regex_automata::hybrid::dfa::Builder::new (src/hybrid/dfa.rs:4003:23)", +"0x10454a008: regex_automata::meta::wrappers::HybridEngine::new (src/meta/wrappers.rs:588:26)", +"0x10454a008: regex_automata::meta::wrappers::Hybrid::new (src/meta/wrappers.rs:522:16)", +"0x10454a008: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:532:21)", +"0x10454a008: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", +"0x1045f4940: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1045f4940: alloc::sync::Arc<[T]>::allocate_for_slice::{{closure}} (alloc/src/sync.rs:2071:33)", +"0x1045f4940: alloc::sync::Arc::allocate_for_layout (alloc/src/sync.rs:1984:19)", +"0x1045f4940: alloc::sync::Arc<[T]>::allocate_for_slice (alloc/src/sync.rs:2069:13)", +"0x1045f4940: alloc::sync::Arc<[T]>::copy_from_slice (alloc/src/sync.rs:2083:23)", +"0x1045f4940: as alloc::sync::ArcFromSlice>::from_slice (alloc/src/sync.rs:2174:18)", +"0x1045f4940: as core::convert::From<&[T]>>::from (alloc/src/sync.rs:3722:9)", +"0x1045f4940: regex_automata::util::determinize::state::StateBuilderNFA::to_state (util/determinize/state.rs:288:15)", +"0x1045f4940: regex_automata::hybrid::dfa::Lazy::add_builder_state (src/hybrid/dfa.rs:2270:45)", +"0x1045f4940: regex_automata::hybrid::dfa::Lazy::cache_next_state (src/hybrid/dfa.rs:2151:25)", +"0x104542be8: regex_automata::hybrid::dfa::DFA::next_state (src/hybrid/dfa.rs:1228:32)", +"0x104542be8: regex_automata::hybrid::search::find_fwd_imp (src/hybrid/search.rs:89:18)", +"0x104542be8: regex_automata::hybrid::search::find_fwd (src/hybrid/search.rs:38:13)", +"0x10455a7d0: regex_automata::hybrid::dfa::DFA::try_search_fwd (src/hybrid/dfa.rs:595:24)", +"0x10455a7d0: regex_automata::hybrid::regex::Regex::try_search (src/hybrid/regex.rs:448:40)", +"0x104557630: regex_automata::meta::wrappers::HybridEngine::try_search (src/meta/wrappers.rs:634:20)", +"0x104557630: regex_automata::meta::strategy::Core::try_search_mayfail (src/meta/strategy.rs:560:20)", +"0x104557630: ::search_slots (src/meta/strategy.rs:829:28)", +"0x10414d688: regex_automata::meta::regex::Regex::search_slots_with (src/meta/regex.rs:1455:24)", +"0x10414d688: regex_automata::meta::regex::Regex::search_captures_with (src/meta/regex.rs:1392:24)", +"0x10414d688: ::next::{{closure}} (src/meta/regex.rs:2171:16)", +"0x104221084: regex_automata::util::iter::Searcher::try_advance (src/util/iter.rs:429:27)", +"0x104221084: regex_automata::util::iter::Searcher::advance (src/util/iter.rs:379:20)", +"0x104221084: ::next (src/meta/regex.rs:2170:20)", +"0x104221084: ::next (src/regex/string.rs:2248:17)", +"0x10421f42c: grimoire_css_lib::core::parser::parser_base::Parser::collect_classes (core/parser/parser_base.rs:124:20)", +"0x10421dfd4: grimoire_css_lib::core::parser::parser_base::Parser::collect_candidates (core/parser/parser_base.rs:230:9)", +"0x10421bc94: grimoire_css_lib::core::parser::parser_fs::ParserFs::collect_spells_from_path (core/parser/parser_fs.rs:233:46)", +"0x10458d5ec: ::allocate (alloc/src/alloc.rs:250:14)", +"0x10458d5ec: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x10458d5ec: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x10458d5ec: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x10458d5ec: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x10458d5ec: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x10458d5ec: regex_syntax::hir::literal::Seq::cross_forward (src/hir/literal.rs:971:49)", +"0x10458d5ec: regex_syntax::hir::literal::Extractor::cross (src/hir/literal.rs:567:18)", +"0x104145498: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104145498: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104145498: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104145498: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104145498: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104145498: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x104145498: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x104145498: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x104145498: std::sys::os_str::bytes::Slice::to_owned (sys/os_str/bytes.rs:314:33)", +"0x104145498: std::ffi::os_str::OsStr::to_os_string (src/ffi/os_str.rs:984:38)", +"0x104145498: std::path::Path::to_path_buf (std/src/path.rs:2351:34)", +"0x104145498: glob::glob_with::to_scope (glob-0.3.3/src/lib.rs:209:11)", +"0x104145498: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", +"0x104145498: core::option::Option::map_or_else (core/src/option.rs:1270:24)", +"0x104145498: glob::glob_with (glob-0.3.3/src/lib.rs:246:22)", +"0x104145498: glob::glob (glob-0.3.3/src/lib.rs:165:5)", +"0x10457b1dc: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x10457b1dc: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x10457b1dc: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x104582d00: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x104582d00: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x104582d00: regex_syntax::ast::parse::ParserI

::push_class_open (src/ast/parse.rs:849:14)", +"0x10457e804: regex_syntax::ast::parse::ParserI

::parse_set_class (src/ast/parse.rs:1899:34)", +"0x1045451f8: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:996:38)", +"0x1045451f8: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", +"0x1045451f8: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", +"0x1045451f8: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", +"0x1045451f8: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x1045494b0: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1045494b0: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x1045494b0: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x1045494b0: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x1045494b0: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1045494b0: ::from_elem (src/vec/spec_from_elem.rs:15:21)", +"0x1045494b0: alloc::vec::from_elem (src/vec/mod.rs:3415:5)", +"0x1045494b0: regex_automata::dfa::onepass::InternalBuilder::new (src/dfa/onepass.rs:566:28)", +"0x1045494b0: regex_automata::dfa::onepass::Builder::build_from_nfa (src/dfa/onepass.rs:413:9)", +"0x1045494b0: regex_automata::meta::wrappers::OnePassEngine::new (src/meta/wrappers.rs:392:18)", +"0x1045494b0: regex_automata::meta::wrappers::OnePass::new (src/meta/wrappers.rs:331:17)", +"0x1045494b0: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:486:23)", +"0x1045494b0: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", +"0x10453db98: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", +"0x10453db98: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", +"0x10453db98: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", +"0x10453db98: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3770:18)", +"0x10453db98: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", +"0x10453db98: as core::iter::traits::collect::Extend>::extend (src/vec/mod.rs:3702:9)", +"0x10453db98: regex_automata::hybrid::dfa::Lazy::init_cache (src/hybrid/dfa.rs:2528:14)", +"0x10453ce00: regex_automata::hybrid::dfa::Cache::new (src/hybrid/dfa.rs:1891:41)", +"0x104568f08: regex_automata::hybrid::regex::Cache::new (src/hybrid/regex.rs:613:23)", +"0x104568f08: regex_automata::hybrid::regex::Regex::create_cache (src/hybrid/regex.rs:192:9)", +"0x104568f08: regex_automata::meta::wrappers::HybridCache::new::{{closure}} (src/meta/wrappers.rs:773:56)", +"0x104568f08: core::option::Option::map (core/src/option.rs:1158:29)", +"0x104568f08: regex_automata::meta::wrappers::HybridCache::new (src/meta/wrappers.rs:773:44)", +"0x104568f08: regex_automata::meta::wrappers::Hybrid::create_cache (src/meta/wrappers.rs:526:9)", +"0x104568f08: ::create_cache (src/meta/strategy.rs:679:33)", +"0x104568f08: ::create_cache (src/meta/strategy.rs:1304:19)", +"0x1045ecf58: as core::ops::function::Fn>::call (alloc/src/boxed.rs:1985:9)", +"0x1045ecf58: regex_automata::util::pool::inner::Pool::get_slow (src/util/pool.rs:568:54)", +"0x10422864c: regex_automata::util::pool::inner::Pool::get (src/util/pool.rs:533:18)", +"0x10422864c: regex_automata::util::pool::Pool::get (src/util/pool.rs:182:26)", +"0x10422864c: regex_automata::meta::regex::Regex::captures_iter (src/meta/regex.rs:655:31)", +"0x10422864c: regex::regex::string::Regex::captures_iter (src/regex/string.rs:424:50)", +"0x10422864c: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::handle_generic_css (core/css_generator/css_generator_base.rs:514:14)", +"0x1042252a8: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::generate_base_and_additional_css (core/css_generator/css_generator_base.rs:399:26)", +"0x1042252a8: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::generate_css (core/css_generator/css_generator_base.rs:180:22)", +"0x1045f3d80: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", +"0x1045f3d80: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", +"0x1045f3d80: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", +"0x1045f3d80: alloc::vec::Vec::append_elements (src/vec/mod.rs:2732:14)", +"0x1045f3d80: as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter>>::spec_extend (src/vec/spec_extend.rs:61:23)", +"0x1045f3d80: alloc::vec::Vec::extend_from_slice (src/vec/mod.rs:3262:14)", +"0x1045f3d80: regex_automata::util::determinize::state::StateBuilderEmpty::into_matches (util/determinize/state.rs:200:16)", +"0x1045f3d80: regex_automata::util::determinize::state::State::dead (util/determinize/state.rs:131:34)", +"0x1045f3ccc: regex_automata::hybrid::dfa::minimum_cache_capacity (src/hybrid/dfa.rs:4374:27)", +"0x10453c8a0: regex_automata::hybrid::dfa::Builder::build_from_nfa (src/hybrid/dfa.rs:4088:25)", +"0x10454a3f4: regex_automata::meta::wrappers::HybridEngine::new (src/meta/wrappers.rs:606:18)", +"0x10454a3f4: regex_automata::meta::wrappers::Hybrid::new (src/meta/wrappers.rs:522:16)", +"0x10454a3f4: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:532:21)", +"0x10454a3f4: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", +"0x1045e7cec: alloc::raw_vec::finish_grow (src/raw_vec/mod.rs:0:0)", +"0x1045f7788: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x1045f7788: alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle (alloc/src/alloc.rs:557:35)", +"0x1041453a0: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", +"0x1041453a0: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", +"0x1041453a0: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", +"0x1041453a0: alloc::vec::Vec::append_elements (src/vec/mod.rs:2732:14)", +"0x1041453a0: as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter>>::spec_extend (src/vec/spec_extend.rs:61:23)", +"0x1041453a0: alloc::vec::Vec::extend_from_slice (src/vec/mod.rs:3262:14)", +"0x1041453a0: std::sys::os_str::bytes::Buf::push_slice (sys/os_str/bytes.rs:139:20)", +"0x1041453a0: ::spec_push_to (src/ffi/os_str.rs:268:27)", +"0x1041453a0: std::ffi::os_str::OsString::push (src/ffi/os_str.rs:284:11)", +"0x1041453a0: std::path::PathBuf::_push (std/src/path.rs:1382:20)", +"0x1041453a0: std::path::PathBuf::push (std/src/path.rs:1301:14)", +"0x1041453a0: >::extend::{{closure}} (std/src/path.rs:1931:49)", +"0x1041453a0: core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (iter/traits/iterator.rs:824:29)", +"0x1041453a0: core::iter::traits::iterator::Iterator::fold (iter/traits/iterator.rs:2602:21)", +"0x1041453a0: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", +"0x1041453a0: >::extend (std/src/path.rs:1931:26)", +"0x1041453a0: >::from_iter (std/src/path.rs:1909:13)", +"0x1041453a0: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x1041453a0: glob::glob_with (glob-0.3.3/src/lib.rs:225:56)", +"0x1041453a0: glob::glob (glob-0.3.3/src/lib.rs:165:5)", +"0x104165c40: grimoire_css_lib::core::config::config_fs::ConfigFs::expand_glob_patterns (core/config/config_fs.rs:564:19)", +"0x10415a2a8: grimoire_css_lib::core::config::config_fs::ConfigFs::projects_from_json::{{closure}} (core/config/config_fs.rs:376:35)", +"0x10415a2a8: core::iter::adapters::map::map_try_fold::{{closure}} (iter/adapters/map.rs:95:28)", +"0x10415a2a8: as core::iter::traits::iterator::Iterator>::try_fold (src/vec/into_iter.rs:351:25)", +"0x10415a2a8: as core::iter::traits::iterator::Iterator>::try_fold (iter/adapters/map.rs:121:19)", +"0x10415a2a8: >::collect_in_place (src/vec/in_place_collect.rs:380:18)", +"0x10415a2a8: alloc::vec::in_place_collect::from_iter_in_place (src/vec/in_place_collect.rs:271:9)", +"0x10415a2a8: alloc::vec::in_place_collect::from_iter_in_place{{reify.shim}} (src/vec/in_place_collect.rs:251:1)", +"0x10415a2a8: alloc::vec::in_place_collect:: for alloc::vec::Vec>::from_iter (src/vec/in_place_collect.rs:246:9)", +"0x10415a2a8: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x10415a2a8: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x10415a2a8: grimoire_css_lib::core::config::config_fs::ConfigFs::projects_from_json (core/config/config_fs.rs:384:14)", +"0x10415a2a8: grimoire_css_lib::core::config::config_fs::ConfigFs::from_json (core/config/config_fs.rs:254:24)", +"0x10415a2a8: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:175:26)", +"0x104549998: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x104549998: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x104549998: regex_automata::dfa::onepass::InternalBuilder::add_start_state (src/dfa/onepass.rs:824:25)", +"0x104549998: regex_automata::dfa::onepass::InternalBuilder::build (src/dfa/onepass.rs:610:14)", +"0x104549998: regex_automata::dfa::onepass::Builder::build_from_nfa (src/dfa/onepass.rs:413:57)", +"0x104549998: regex_automata::meta::wrappers::OnePassEngine::new (src/meta/wrappers.rs:392:18)", +"0x104549998: regex_automata::meta::wrappers::OnePass::new (src/meta/wrappers.rs:331:17)", +"0x104549998: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:486:23)", +"0x104549998: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", +"0x1045ec9c8: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::new (core/css_generator/css_generator_base.rs:68:26)", +"0x1045ec9c8: grimoire_css_lib::core::css_builder::css_builder_base::CssBuilder::new (core/css_builder/css_builder_base.rs:46:29)", +"0x1045525b8: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1045525b8: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x1045525b8: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x1045525b8: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x1045525b8: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1045525b8: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x1045525b8: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x1045525b8: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x1045525b8: regex_automata::nfa::thompson::builder::Builder::build (nfa/thompson/builder.rs:464:45)", +"0x1045525b8: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:1012:14)", +"0x10452d9ec: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x10452d9ec: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x10452d9ec: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x104539030: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x104539030: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x104539030: regex_automata::nfa::thompson::compiler::Utf8Node::set_last_transition (nfa/thompson/compiler.rs:1892:24)", +"0x104539030: regex_automata::nfa::thompson::compiler::Utf8Compiler::pop_freeze (nfa/thompson/compiler.rs:1868:20)", +"0x104539030: regex_automata::nfa::thompson::compiler::Utf8Compiler::compile_from (nfa/thompson/compiler.rs:1821:29)", +"0x1045389a0: regex_automata::nfa::thompson::compiler::Utf8Compiler::finish (nfa/thompson/compiler.rs:1796:14)", +"0x104536208: regex_automata::nfa::thompson::compiler::Compiler::c_unicode_class (nfa/thompson/compiler.rs:1468:19)", +"0x104536208: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1026:50)", +"0x104538024: regex_automata::nfa::thompson::compiler::Compiler::c_alt_slice::{{closure}} (nfa/thompson/compiler.rs:1079:62)", +"0x104538024: core::ops::function::impls:: for &mut F>::call_once (src/ops/function.rs:313:21)", +"0x104538024: core::option::Option::map (core/src/option.rs:1158:29)", +"0x104538024: as core::iter::traits::iterator::Iterator>::next (iter/adapters/map.rs:107:26)", +"0x104538024: regex_automata::nfa::thompson::compiler::Compiler::c_alt_iter (nfa/thompson/compiler.rs:1110:30)", +"0x104534184: regex_automata::nfa::thompson::compiler::Compiler::c_alt_slice (nfa/thompson/compiler.rs:1079:25)", +"0x104534184: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1031:41)", +"0x104530700: regex_automata::nfa::thompson::compiler::Compiler::c_at_least (nfa/thompson/compiler.rs:1267:37)", +"0x10457dce8: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x10457dce8: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x10457dce8: regex_syntax::ast::Ast::group (src/ast/mod.rs:546:20)", +"0x10457dce8: regex_syntax::ast::parse::ParserI

::pop_group (src/ast/parse.rs:785:32)", +"0x1045451d0: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:993:38)", +"0x1045451d0: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", +"0x1045451d0: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", +"0x1045451d0: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", +"0x1045451d0: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x1045392ec: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1045392ec: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x1045392ec: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x1045392ec: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x1045392ec: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1045392ec: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x1045392ec: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x1045392ec: as core::clone::Clone>::clone (src/vec/mod.rs:3515:9)", +"0x1045392ec: regex_automata::nfa::thompson::compiler::Utf8Compiler::compile (nfa/thompson/compiler.rs:1836:47)", +"0x1045389f4: regex_automata::nfa::thompson::compiler::Utf8Compiler::finish (nfa/thompson/compiler.rs:1798:26)", +"0x1045348b4: regex_automata::nfa::thompson::compiler::Compiler::c::{{closure}} (nfa/thompson/compiler.rs:1030:68)", +"0x1045348b4: core::ops::function::impls:: for &mut F>::call_once (src/ops/function.rs:313:21)", +"0x1045348b4: core::option::Option::map (core/src/option.rs:1158:29)", +"0x1045348b4: as core::iter::traits::iterator::Iterator>::next (iter/adapters/map.rs:107:26)", +"0x1045348b4: regex_automata::nfa::thompson::compiler::Compiler::c_concat (nfa/thompson/compiler.rs:1052:67)", +"0x1045348b4: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1030:36)", +"0x104552e38: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x104552e38: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x104552e38: regex_automata::nfa::thompson::nfa::Inner::into_nfa (nfa/thompson/nfa.rs:1280:19)", +"0x104552e38: regex_automata::nfa::thompson::builder::Builder::build (nfa/thompson/builder.rs:592:29)", +"0x104552e38: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:1012:14)", +"0x1045f3dd4: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1045f3dd4: alloc::sync::Arc<[T]>::allocate_for_slice::{{closure}} (alloc/src/sync.rs:2071:33)", +"0x1045f3dd4: alloc::sync::Arc::allocate_for_layout (alloc/src/sync.rs:1984:19)", +"0x1045f3dd4: alloc::sync::Arc<[T]>::allocate_for_slice (alloc/src/sync.rs:2069:13)", +"0x1045f3dd4: alloc::sync::Arc<[T]>::copy_from_slice (alloc/src/sync.rs:2083:23)", +"0x1045f3dd4: as alloc::sync::ArcFromSlice>::from_slice (alloc/src/sync.rs:2174:18)", +"0x1045f3dd4: as core::convert::From<&[T]>>::from (alloc/src/sync.rs:3722:9)", +"0x1045f3dd4: regex_automata::util::determinize::state::StateBuilderNFA::to_state (util/determinize/state.rs:288:15)", +"0x1045f3dd4: regex_automata::util::determinize::state::State::dead (util/determinize/state.rs:131:60)", +"0x10453d0b8: regex_automata::hybrid::dfa::Lazy::init_cache (src/hybrid/dfa.rs:2531:20)", +"0x104556bdc: regex_automata::hybrid::regex::Cache::new (src/hybrid/regex.rs:614:23)", +"0x104556bdc: regex_automata::hybrid::regex::Regex::create_cache (src/hybrid/regex.rs:192:9)", +"0x104556bdc: regex_automata::meta::wrappers::HybridCache::new::{{closure}} (src/meta/wrappers.rs:773:56)", +"0x104556bdc: core::option::Option::map (core/src/option.rs:1158:29)", +"0x104556bdc: regex_automata::meta::wrappers::HybridCache::new (src/meta/wrappers.rs:773:44)", +"0x104556bdc: regex_automata::meta::wrappers::Hybrid::create_cache (src/meta/wrappers.rs:526:9)", +"0x104556bdc: ::create_cache (src/meta/strategy.rs:679:33)", +"0x104220af0: regex_automata::util::pool::inner::Pool::get (src/util/pool.rs:533:18)", +"0x104220af0: regex_automata::util::pool::Pool::get (src/util/pool.rs:182:26)", +"0x104220af0: regex_automata::meta::regex::Regex::captures_iter (src/meta/regex.rs:655:31)", +"0x104220af0: regex::regex::string::Regex::captures_iter (src/regex/string.rs:424:50)", +"0x104220af0: grimoire_css_lib::core::parser::parser_base::Parser::collect_classes (core/parser/parser_base.rs:124:26)", +"0x104213e44: grimoire_css_lib::core::parser::parser_fs::ParserFs::collect_classes_single_output (core/parser/parser_fs.rs:63:18)", +"0x104213e44: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::build (core/css_builder/css_builder_fs.rs:93:22)", +"0x104213e44: grimoire_css_lib::commands::build::build (src/commands/build.rs:37:61)", +"0x104213e44: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", +"0x104532aa0: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x104532aa0: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x104532aa0: regex_automata::util::captures::GroupInfoInner::add_first_group (src/util/captures.rs:2207:28)", +"0x104551918: regex_automata::util::captures::GroupInfo::new (src/util/captures.rs:1595:24)", +"0x104551918: regex_automata::nfa::thompson::nfa::Inner::set_captures (nfa/thompson/nfa.rs:1434:27)", +"0x104551918: regex_automata::nfa::thompson::builder::Builder::build (nfa/thompson/builder.rs:439:13)", +"0x104551918: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:1012:14)", +"0x1045ed548: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x1045ed548: alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle (src/num/uint_macros.rs:557:35)", +"0x104273474: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", +"0x104273474: alloc::raw_vec::RawVec::reserve (src/num/uint_macros.rs:331:20)", +"0x104273474: alloc::vec::Vec::reserve (src/fmt/rt.rs:1339:18)", +"0x104273474: alloc::string::String::reserve (src/ptr/non_null.rs:1214:18)", +"0x104273474: alloc::string::String::push (src/ptr/non_null.rs:1413:14)", +"0x104273474: indicatif::style::Template::from_str_with_tab_width (src/util/search.rs:628:21)", +"0x104273474: indicatif::style::Template::from_str (src/util/search.rs:643:9)", +"0x1042571f8: indicatif::style::ProgressStyle::default_spinner (indicatif-0.18.3/src/style.rs:78:19)", +"0x1042571f8: indicatif::progress_bar::ProgressBar::new_spinner (indicatif-0.18.3/src/progress_bar.rs:152:22)", +"0x1042571f8: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:156:14)", +"0x10458d1a0: ::allocate (alloc/src/alloc.rs:250:14)", +"0x10458d1a0: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x10458d1a0: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x10458d1a0: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x10458d1a0: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x10458d1a0: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x10458d1a0: regex_syntax::hir::literal::Seq::cross_reverse (src/hir/literal.rs:1108:44)", +"0x10458d1a0: regex_syntax::hir::literal::Extractor::cross (src/hir/literal.rs:565:18)", +"0x10458babc: regex_syntax::hir::literal::Extractor::extract_concat (src/hir/literal.rs:407:24)", +"0x10458babc: regex_syntax::hir::literal::Extractor::extract (src/hir/literal.rs:190:45)", +"0x10454b9d0: regex_automata::util::prefilter::suffixes (util/prefilter/mod.rs:695:39)", +"0x10454b9d0: regex_automata::meta::strategy::ReverseSuffix::new (src/meta/strategy.rs:1170:24)", +"0x10454b9d0: regex_automata::meta::strategy::new (src/meta/strategy.rs:170:18)", +"0x1045555e8: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x1045555e8: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x1045555e8: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", +"0x1045555e8: regex_automata::util::prefilter::Prefilter::from_choice (util/prefilter/mod.rs:230:38)", +"0x10454a6e8: regex_automata::util::prefilter::Prefilter::new::{{closure}} (util/prefilter/mod.rs:210:13)", +"0x10454a6e8: core::option::Option::and_then (core/src/option.rs:1537:24)", +"0x10454a6e8: regex_automata::util::prefilter::Prefilter::new (util/prefilter/mod.rs:207:36)", +"0x10454a6e8: regex_automata::meta::strategy::new::{{closure}} (src/meta/strategy.rs:147:13)", +"0x10454a6e8: regex_automata::meta::strategy::new (src/meta/strategy.rs:141:29)", +"0x10454f840: ::allocate (alloc/src/alloc.rs:250:14)", +"0x10454f840: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x10454f840: alloc::raw_vec::RawVecInner::with_capacity (src/raw_vec/mod.rs:150:15)", +"0x10454f840: alloc::raw_vec::RawVec::with_capacity (src/raw_vec/mod.rs:128:23)", +"0x10454f840: as alloc::boxed::convert::BoxFromSlice>::from_slice (src/boxed/convert.rs:82:19)", +"0x10454f840: alloc::boxed::convert:: for alloc::boxed::Box<[T]>>::from (src/boxed/convert.rs:108:9)", +"0x10454f840: memchr::cow::CowBytes::into_owned (memchr-2.7.6/src/cow.rs:66:37)", +"0x10454f840: memchr::memmem::Finder::into_owned (src/memmem/mod.rs:475:33)", +"0x10454f840: regex_automata::util::prefilter::memmem::Memmem::new (util/prefilter/memmem.rs:29:62)", +"0x10454f840: regex_automata::util::prefilter::Choice::new (util/prefilter/mod.rs:611:28)", +"0x104549510: regex_automata::util::prefilter::Prefilter::new (util/prefilter/mod.rs:207:9)", +"0x104549510: regex_automata::meta::strategy::new::{{closure}} (src/meta/strategy.rs:147:13)", +"0x104549510: core::option::Option::and_then (core/src/option.rs:1537:24)", +"0x104549510: regex_automata::meta::strategy::new (src/meta/strategy.rs:141:29)", +"0x1045894dc: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x1045894dc: ::drop (src/ast/mod.rs:1721:25)", +"0x10457b8fc: core::ptr::drop_in_place (src/ptr/mod.rs:804:1)", +"0x10457fd00: core::ptr::drop_in_place (src/ptr/mod.rs:804:1)", +"0x10457fd00: core::ptr::drop_in_place> (src/ptr/mod.rs:804:1)", +"0x10457fd00: core::ptr::drop_in_place (src/ptr/mod.rs:804:1)", +"0x104580b78: ::drop (src/ast/mod.rs:1683:9)", +"0x10452d938: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x10452d938: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x10452d938: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x1045334b8: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x1045334b8: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x1045334b8: regex_automata::nfa::thompson::builder::Builder::add_capture_start (nfa/thompson/builder.rs:1023:32)", +"0x1045334b8: regex_automata::nfa::thompson::compiler::Compiler::add_capture_start (nfa/thompson/compiler.rs:1691:35)", +"0x1045334b8: regex_automata::nfa::thompson::compiler::Compiler::c_cap (nfa/thompson/compiler.rs:1156:26)", +"0x10453dbb8: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", +"0x10453dbb8: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", +"0x10453dbb8: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", +"0x10453dbb8: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3770:18)", +"0x10453dbb8: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", +"0x10453dbb8: as core::iter::traits::collect::Extend>::extend (src/vec/mod.rs:3702:9)", +"0x10453dbb8: regex_automata::hybrid::dfa::Lazy::add_state (src/hybrid/dfa.rs:2303:26)", +"0x10453dbb8: regex_automata::hybrid::dfa::Lazy::init_cache (src/hybrid/dfa.rs:2546:18)", +"0x104556bd0: regex_automata::hybrid::regex::Cache::new (src/hybrid/regex.rs:613:23)", +"0x104556bd0: regex_automata::hybrid::regex::Regex::create_cache (src/hybrid/regex.rs:192:9)", +"0x104556bd0: regex_automata::meta::wrappers::HybridCache::new::{{closure}} (src/meta/wrappers.rs:773:56)", +"0x104556bd0: core::option::Option::map (core/src/option.rs:1158:29)", +"0x104556bd0: regex_automata::meta::wrappers::HybridCache::new (src/meta/wrappers.rs:773:44)", +"0x104556bd0: regex_automata::meta::wrappers::Hybrid::create_cache (src/meta/wrappers.rs:526:9)", +"0x104556bd0: ::create_cache (src/meta/strategy.rs:679:33)", +"0x10421dfa4: grimoire_css_lib::core::parser::parser_base::Parser::collect_candidates (core/parser/parser_base.rs:220:9)", +"0x104584b28: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x104584b28: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x104584b28: regex_syntax::ast::Ast::concat (src/ast/mod.rs:556:21)", +"0x104584b28: regex_syntax::ast::Concat::into_ast (src/ast/mod.rs:665:18)", +"0x10457e3f4: regex_syntax::ast::parse::ParserI

::push_or_add_alternation (src/ast/parse.rs:680:35)", +"0x10457e3f4: regex_syntax::ast::parse::ParserI

::push_alternate (src/ast/parse.rs:668:14)", +"0x104545400: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:994:38)", +"0x104545400: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", +"0x104545400: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", +"0x104545400: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", +"0x104545400: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x10457b63c: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x10457b63c: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x10457b63c: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x10457d558: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x10457d558: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x10457d558: regex_syntax::ast::parse::ParserI

::push_group (src/ast/parse.rs:721:56)", +"0x10454543c: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:992:38)", +"0x10454543c: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", +"0x10454543c: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", +"0x10454543c: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", +"0x10454543c: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x1045927b8: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1045927b8: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x1045927b8: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x1045927b8: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x1045927b8: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1045927b8: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x1045927b8: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x1045927b8: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x1045927b8: regex_syntax::hir::translate::TranslatorI::push_char (src/hir/translate.rs:707:48)", +"0x1045927b8: ::visit_post (src/hir/translate.rs:388:34)", +"0x10415cb40: grimoire_css_lib::core::config::config_fs::ConfigFs::load_external_scrolls (core/config/config_fs.rs:614:15)", +"0x10415cb40: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:181:26)", +"0x10452f288: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", +"0x10452f288: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", +"0x10452f288: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", +"0x10452f288: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3770:18)", +"0x10452f288: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", +"0x10452f288: as core::iter::traits::collect::Extend>::extend (src/vec/mod.rs:3702:9)", +"0x10452f288: regex_automata::dfa::onepass::InternalBuilder::add_empty_state (src/dfa/onepass.rs:882:14)", +"0x104549904: regex_automata::dfa::onepass::InternalBuilder::build (src/dfa/onepass.rs:604:31)", +"0x104549904: regex_automata::dfa::onepass::Builder::build_from_nfa (src/dfa/onepass.rs:413:57)", +"0x104549904: regex_automata::meta::wrappers::OnePassEngine::new (src/meta/wrappers.rs:392:18)", +"0x104549904: regex_automata::meta::wrappers::OnePass::new (src/meta/wrappers.rs:331:17)", +"0x104549904: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:486:23)", +"0x104549904: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", +"0x10458bd08: regex_syntax::hir::literal::Extractor::extract_alternation (src/hir/literal.rs:428:45)", +"0x10458bd08: regex_syntax::hir::literal::Extractor::extract (src/hir/literal.rs:196:22)", +"0x10458be6c: regex_syntax::hir::literal::Extractor::extract_concat (src/hir/literal.rs:407:45)", +"0x10458be6c: regex_syntax::hir::literal::Extractor::extract (src/hir/literal.rs:189:45)", +"0x10453cd38: regex_automata::util::sparse_set::SparseSet::new (src/util/sparse_set.rs:119:13)", +"0x10453cd38: regex_automata::util::sparse_set::SparseSets::new (src/util/sparse_set.rs:48:19)", +"0x10453cd38: regex_automata::hybrid::dfa::Cache::new (src/hybrid/dfa.rs:1881:22)", +"0x10421e064: grimoire_css_lib::core::parser::parser_base::Parser::collect_candidates (core/parser/parser_base.rs:260:9)", +"0x104599d28: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104599d28: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104599d28: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104599d28: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104599d28: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104599d28: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x104599d28: regex_syntax::hir::Hir::alternation (src/hir/mod.rs:576:23)", +"0x104591a5c: ::visit_post (src/hir/translate.rs:462:42)", +"0x104546eb8: regex_syntax::ast::visitor::HeapVisitor::visit (src/ast/visitor.rs:251:25)", +"0x104546eb8: regex_syntax::ast::visitor::visit (src/ast/visitor.rs:119:24)", +"0x104546eb8: regex_syntax::hir::translate::Translator::translate (src/hir/translate.rs:174:9)", +"0x104546eb8: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3494:18)", +"0x104546eb8: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x104551774: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", +"0x104551774: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", +"0x104551774: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", +"0x104551774: alloc::vec::Vec::extend_with (src/vec/mod.rs:3355:14)", +"0x104551774: alloc::vec::Vec::resize (src/vec/mod.rs:3234:18)", +"0x104551774: regex_automata::nfa::thompson::builder::Builder::build (nfa/thompson/builder.rs:436:15)", +"0x104551774: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:1012:14)", +"0x104530830: regex_automata::nfa::thompson::compiler::Compiler::patch (nfa/thompson/compiler.rs:1637:35)", +"0x104530830: regex_automata::nfa::thompson::compiler::Compiler::c_at_least (nfa/thompson/compiler.rs:1308:18)", +"0x104534278: regex_automata::nfa::thompson::compiler::Compiler::c_zero_or_one (nfa/thompson/compiler.rs:1338:29)", +"0x104534278: regex_automata::nfa::thompson::compiler::Compiler::c_repetition (nfa/thompson/compiler.rs:1171:34)", +"0x104534278: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1028:41)", +"0x104599c50: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x104599c50: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x104599c50: regex_syntax::hir::Properties::repetition (src/hir/mod.rs:2553:20)", +"0x1045921c4: regex_syntax::hir::Hir::repetition (src/hir/mod.rs:395:21)", +"0x1045921c4: regex_syntax::hir::translate::TranslatorI::hir_repetition (src/hir/translate.rs:1016:9)", +"0x1045921c4: ::visit_post (src/hir/translate.rs:437:47)", +"0x10452efe8: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", +"0x10452efe8: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", +"0x10452efe8: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", +"0x10452efe8: alloc::vec::Vec::extend_with (src/vec/mod.rs:3355:14)", +"0x10452efe8: alloc::vec::Vec::resize (src/vec/mod.rs:3234:18)", +"0x10452efe8: regex_automata::util::sparse_set::SparseSet::resize (src/util/sparse_set.rs:136:20)", +"0x1045e73e0: alloc::raw_vec::finish_grow (src/raw_vec/mod.rs:0:0)", +"0x104144d40: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x104144d40: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x104144d40: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x104145f30: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x104145f30: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x104145f30: glob::Pattern::new (glob-0.3.3/src/lib.rs:718:28)", +"0x104257358: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104257358: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104257358: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104257358: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104257358: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104257358: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x104257358: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x104257358: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x104257358: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", +"0x104257358: alloc::str::::to_owned (alloc/src/str.rs:211:62)", +"0x104257358: >::from (alloc/src/string.rs:3056:11)", +"0x104257358: <&str as alloc::string::SpecToString>::spec_to_string (alloc/src/string.rs:2977:21)", +"0x104257358: ::to_string (alloc/src/string.rs:2809:9)", +"0x104257358: indicatif::style::ProgressStyle::tick_strings::{{closure}} (indicatif-0.18.3/src/style.rs:150:48)", +"0x104257358: core::iter::adapters::map::map_fold::{{closure}} (iter/adapters/map.rs:88:28)", +"0x104257358: as core::iter::traits::iterator::Iterator>::fold (slice/iter/macros.rs:255:27)", +"0x104257358: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/map.rs:128:19)", +"0x104257358: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", +"0x104257358: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3774:26)", +"0x104257358: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", +"0x104257358: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:62:16)", +"0x104257358: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x104257358: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x104257358: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x104257358: indicatif::style::ProgressStyle::tick_strings (indicatif-0.18.3/src/style.rs:150:68)", +"0x104257358: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:157:51)", +"0x104536b20: regex_automata::nfa::thompson::compiler::Compiler::patch (nfa/thompson/compiler.rs:1637:35)", +"0x104536b20: regex_automata::nfa::thompson::compiler::Compiler::c_unicode_class_reverse_with_suffix (nfa/thompson/compiler.rs:1564:22)", +"0x104536b20: regex_automata::nfa::thompson::compiler::Compiler::c_unicode_class (nfa/thompson/compiler.rs:1422:22)", +"0x104536b20: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1026:50)", +"0x104534870: regex_automata::nfa::thompson::compiler::Compiler::c::{{closure}} (nfa/thompson/compiler.rs:1030:68)", +"0x104534870: core::ops::function::impls:: for &mut F>::call_once (src/ops/function.rs:313:21)", +"0x104534870: core::option::Option::map (core/src/option.rs:1158:29)", +"0x104534870: as core::iter::traits::double_ended::DoubleEndedIterator>::next_back (iter/adapters/map.rs:149:31)", +"0x104534870: regex_automata::nfa::thompson::compiler::Compiler::c_concat (nfa/thompson/compiler.rs:1052:43)", +"0x104534870: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1030:36)", +"0x10453812c: regex_automata::nfa::thompson::compiler::Compiler::c_alt_slice::{{closure}} (nfa/thompson/compiler.rs:1079:62)", +"0x10453812c: core::ops::function::impls:: for &mut F>::call_once (src/ops/function.rs:313:21)", +"0x10453812c: core::option::Option::map (core/src/option.rs:1158:29)", +"0x10453812c: as core::iter::traits::iterator::Iterator>::next (iter/adapters/map.rs:107:26)", +"0x10453812c: regex_automata::nfa::thompson::compiler::Compiler::c_alt_iter (nfa/thompson/compiler.rs:1114:31)", +"0x104533aac: regex_automata::nfa::thompson::compiler::Compiler::c::{{closure}} (nfa/thompson/compiler.rs:1030:68)", +"0x104533aac: core::ops::function::impls:: for &mut F>::call_once (src/ops/function.rs:313:21)", +"0x104533aac: core::option::Option::map (core/src/option.rs:1158:29)", +"0x104533aac: as core::iter::traits::double_ended::DoubleEndedIterator>::next_back (iter/adapters/map.rs:149:31)", +"0x104533aac: regex_automata::nfa::thompson::compiler::Compiler::c_concat (nfa/thompson/compiler.rs:1045:47)", +"0x104533aac: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1030:36)", +"0x10452e1b8: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x10452e1b8: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x10452e1b8: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x1045329d0: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x1045329d0: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x1045329d0: regex_automata::util::captures::GroupInfoInner::add_first_group (src/util/captures.rs:2205:26)", +"0x10452e3e0: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x10452e3e0: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x10452e3e0: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x104532a38: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x104532a38: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x104532a38: regex_automata::util::captures::GroupInfoInner::add_first_group (src/util/captures.rs:2206:28)", +"0x1045920a0: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x1045920a0: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x1045920a0: regex_syntax::hir::translate::TranslatorI::hir_repetition (src/hir/translate.rs:1020:18)", +"0x1045920a0: ::visit_post (src/hir/translate.rs:437:47)", +"0x104533a60: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104533a60: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104533a60: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104533a60: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104533a60: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104533a60: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x104533a60: regex_automata::nfa::thompson::compiler::Compiler::c_byte_class (nfa/thompson/compiler.rs:1371:25)", +"0x104533a60: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1025:48)", +"0x104552768: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104552768: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104552768: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104552768: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104552768: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104552768: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x104552768: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x104552768: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x104552768: regex_automata::nfa::thompson::builder::Builder::build (nfa/thompson/builder.rs:523:40)", +"0x104552768: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:1012:14)", +"0x104553264: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x104553264: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x104553264: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", +"0x104553264: regex_automata::nfa::thompson::nfa::Inner::into_nfa (nfa/thompson/nfa.rs:1343:13)", +"0x104553264: regex_automata::nfa::thompson::builder::Builder::build (nfa/thompson/builder.rs:592:29)", +"0x104553264: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:1012:14)", +"0x1045e50d4: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x1045e50d4: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x1045e50d4: ahash::random_state::get_src::{{closure}} (ahash-0.8.12/src/random_state.rs:192:53)", +"0x1045e50d4: once_cell::race::once_box::OnceBox::get_or_init::{{closure}} (once_cell-1.21.3/src/race.rs:437:62)", +"0x1045e50d4: once_cell::race::once_box::OnceBox::init (once_cell-1.21.3/src/race.rs:463:23)", +"0x104114924: once_cell::race::once_box::OnceBox::get_or_try_init (once_cell-1.21.3/src/race.rs:456:30)", +"0x104114924: once_cell::race::once_box::OnceBox::get_or_init (once_cell-1.21.3/src/race.rs:437:24)", +"0x104114924: ahash::random_state::get_src (ahash-0.8.12/src/random_state.rs:192:29)", +"0x104114924: ahash::random_state::RandomState::new (ahash-0.8.12/src/random_state.rs:235:19)", +"0x104114924: as core::iter::traits::collect::FromIterator<(K,V)>>::from_iter (ahash-0.8.12/src/hash_map.rs:354:46)", +"0x104114924: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x104114924: browserslist_data::caniuse::BROWSER_VERSION_ALIASES::{{closure}} (browserslist-data-0.1.4/src/caniuse.rs:62:10)", +"0x104114924: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", +"0x104113fcc: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", +"0x104113fcc: std::sync::lazy_lock::LazyLock::force::{{closure}} (src/sync/lazy_lock.rs:213:25)", +"0x104113fcc: std::sync::poison::once::Once::call_once::{{closure}} (sync/poison/once.rs:155:41)", +"0x1045fab8c: std::sys::sync::once::queue::Once::call (sync/once/queue.rs:220:21)", +"0x104113dec: std::sync::poison::once::Once::call_once (sync/poison/once.rs:155:20)", +"0x104113dec: std::sync::lazy_lock::LazyLock::force (src/sync/lazy_lock.rs:209:19)", +"0x104113dec: as core::ops::deref::Deref>::deref (src/sync/lazy_lock.rs:312:9)", +"0x104113dec: browserslist_data::caniuse::get_browser_version_alias (browserslist-data-0.1.4/src/caniuse.rs:169:5)", +"0x104106fa4: browserslist::queries::browser_unbounded_range::browser_unbounded_range (src/queries/browser_unbounded_range.rs:13:28)", +"0x1040f99e4: browserslist::resolve::{{closure}} (browserslist-rs-0.19.0/src/lib.rs:116:28)", +"0x1040f99e4: as core::iter::traits::iterator::Iterator>::try_fold::enumerate::{{closure}} (iter/adapters/enumerate.rs:119:27)", +"0x1040f99e4: as core::iter::traits::iterator::Iterator>::try_fold (src/vec/into_iter.rs:351:25)", +"0x1040f99e4: as core::iter::traits::iterator::Iterator>::try_fold (iter/adapters/enumerate.rs:125:19)", +"0x1040f99e4: browserslist::resolve (browserslist-rs-0.19.0/src/lib.rs:111:10)", +"0x1040f99e4: browserslist::queries::dead::dead (src/queries/dead.rs:5:5)", +"0x1040f99e4: browserslist::queries::query (src/queries/mod.rs:219:28)", +"0x1040f9360: browserslist::resolve::{{closure}} (browserslist-rs-0.19.0/src/lib.rs:116:28)", +"0x1040f9360: as core::iter::traits::iterator::Iterator>::try_fold::enumerate::{{closure}} (iter/adapters/enumerate.rs:119:27)", +"0x1040f9360: as core::iter::traits::iterator::Iterator>::try_fold (src/vec/into_iter.rs:351:25)", +"0x1040f9360: as core::iter::traits::iterator::Iterator>::try_fold (iter/adapters/enumerate.rs:125:19)", +"0x1040f9360: browserslist::resolve (browserslist-rs-0.19.0/src/lib.rs:111:10)", +"0x1040f9360: browserslist::queries::defaults::defaults (src/queries/defaults.rs:5:5)", +"0x1040f9360: browserslist::queries::query (src/queries/mod.rs:218:32)", +"0x104258684: browserslist::resolve::{{closure}} (browserslist-rs-0.19.0/src/lib.rs:116:28)", +"0x104258684: as core::iter::traits::iterator::Iterator>::try_fold::enumerate::{{closure}} (iter/adapters/enumerate.rs:119:27)", +"0x104258684: as core::iter::traits::iterator::Iterator>::try_fold (src/vec/into_iter.rs:351:25)", +"0x104258684: as core::iter::traits::iterator::Iterator>::try_fold (iter/adapters/enumerate.rs:125:19)", +"0x104258684: browserslist::resolve (browserslist-rs-0.19.0/src/lib.rs:111:10)", +"0x104258684: lightningcss::targets::Browsers::from_browserslist_with_config (lightningcss-1.0.0-alpha.68/src/targets.rs:64:25)", +"0x104258684: lightningcss::targets::Browsers::from_browserslist (lightningcss-1.0.0-alpha.68/src/targets.rs:54:5)", +"0x104258684: grimoire_css_lib::infrastructure::lightning_css_optimizer::LightningCssOptimizer::from_content (src/infrastructure/lightning_css_optimizer.rs:27:24)", +"0x104258684: grimoire_css_lib::infrastructure::lightning_css_optimizer::LightningCssOptimizer::new (src/infrastructure/lightning_css_optimizer.rs:59:9)", +"0x104258684: grimoire_css_lib::start (grimoire-css/src/lib.rs:73:25)", +"0x104258684: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:164:11)", +"0x104594324: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x104594324: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x104594324: regex_syntax::hir::Properties::literal (src/hir/mod.rs:2448:20)", +"0x104594324: regex_syntax::hir::Hir::literal (src/hir/mod.rs:349:21)", +"0x10459bbac: regex_syntax::hir::Hir::concat (src/hir/mod.rs:493:22)", +"0x104591854: ::visit_post (src/hir/translate.rs:453:42)", +"0x10453ccf8: regex_automata::util::sparse_set::SparseSet::new (src/util/sparse_set.rs:119:13)", +"0x10453ccf8: regex_automata::util::sparse_set::SparseSets::new (src/util/sparse_set.rs:47:19)", +"0x10453ccf8: regex_automata::hybrid::dfa::Cache::new (src/hybrid/dfa.rs:1881:22)", +"0x10421e034: grimoire_css_lib::core::parser::parser_base::Parser::collect_candidates (core/parser/parser_base.rs:250:9)", +"0x10421e004: grimoire_css_lib::core::parser::parser_base::Parser::collect_candidates (core/parser/parser_base.rs:240:9)", +"0x10457aee8: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x10457aee8: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x10457aee8: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x104593170: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x104593170: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x104593170: regex_syntax::hir::translate::TranslatorI::push (src/hir/translate.rs:692:41)", +"0x104545fe4: ::visit_pre (src/hir/translate.rs:345:40)", +"0x104545fe4: regex_syntax::ast::visitor::HeapVisitor::visit (src/ast/visitor.rs:215:21)", +"0x104545fe4: regex_syntax::ast::visitor::visit (src/ast/visitor.rs:119:24)", +"0x104545fe4: regex_syntax::hir::translate::Translator::translate (src/hir/translate.rs:174:9)", +"0x104545fe4: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3494:18)", +"0x104545fe4: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x1045491d8: regex_automata::dfa::onepass::Builder::new (src/dfa/onepass.rs:347:23)", +"0x1045491d8: regex_automata::meta::wrappers::OnePassEngine::new (src/meta/wrappers.rs:390:26)", +"0x1045491d8: regex_automata::meta::wrappers::OnePass::new (src/meta/wrappers.rs:331:17)", +"0x1045491d8: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:486:23)", +"0x1045491d8: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", +"0x10455289c: ::allocate_zeroed (alloc/src/alloc.rs:256:14)", +"0x10455289c: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:478:40)", +"0x10455289c: alloc::raw_vec::RawVecInner::with_capacity_zeroed_in (src/raw_vec/mod.rs:447:15)", +"0x10455289c: alloc::raw_vec::RawVec::with_capacity_zeroed_in (src/raw_vec/mod.rs:212:20)", +"0x10455289c: ::from_elem (src/vec/spec_from_elem.rs:26:31)", +"0x10455289c: alloc::vec::from_elem (src/vec/mod.rs:3415:5)", +"0x10455289c: regex_automata::nfa::thompson::builder::Builder::build (nfa/thompson/builder.rs:560:28)", +"0x10455289c: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:1012:14)", +"0x104545908: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x104545908: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x104545908: regex_syntax::ast::Ast::class_perl (src/ast/mod.rs:531:24)", +"0x104545908: regex_syntax::ast::parse::Primitive::into_ast (src/ast/parse.rs:59:37)", +"0x104545908: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:1020:63)", +"0x104545908: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", +"0x104545908: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", +"0x104545908: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", +"0x104545908: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x10458bf08: ::allocate (alloc/src/alloc.rs:250:14)", +"0x10458bf08: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x10458bf08: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x10458bf08: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x10458bf08: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x10458bf08: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x10458bf08: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x10458bf08: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x10458bf08: regex_syntax::hir::literal::Extractor::extract (src/hir/literal.rs:178:63)", +"0x10458c340: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x10458c340: regex_syntax::hir::literal::Seq::singleton (src/hir/literal.rs:783:30)", +"0x10458c340: regex_syntax::hir::literal::Extractor::extract (src/hir/literal.rs:178:21)", +"0x1045543f8: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", +"0x1045543f8: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", +"0x1045543f8: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", +"0x1045543f8: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3770:18)", +"0x1045543f8: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", +"0x1045543f8: as core::iter::traits::collect::Extend>::extend (src/vec/mod.rs:3702:9)", +"0x1045543f8: regex_syntax::hir::literal::Seq::union (src/hir/literal.rs:1233:15)", +"0x104548574: regex_automata::util::prefilter::prefixes (util/prefilter/mod.rs:658:18)", +"0x104548574: regex_automata::meta::strategy::new (src/meta/strategy.rs:112:24)", +"0x104532a68: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x104532a68: regex_automata::util::captures::GroupInfoInner::add_first_group (src/util/captures.rs:2207:33)", +"0x10459f93c: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x10459f93c: regex_syntax::utf8::Utf8Sequences::new (regex-syntax-0.8.8/src/utf8.rs:307:38)", +"0x104536920: regex_automata::nfa::thompson::compiler::Compiler::c_unicode_class_reverse_with_suffix (nfa/thompson/compiler.rs:1545:24)", +"0x104536920: regex_automata::nfa::thompson::compiler::Compiler::c_unicode_class (nfa/thompson/compiler.rs:1422:22)", +"0x104536920: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1026:50)", +"0x1045cc338: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x1045cc338: alloc::raw_vec::RawVecInner::grow_one (alloc/src/alloc.rs:571:32)", +"0x1045cc338: alloc::raw_vec::RawVec::grow_one (alloc/src/alloc.rs:340:20)", +"0x1045cc148: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x1045cc148: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x1045cc148: std::sys::thread_local::destructors::list::register (???:17:11)", +"0x104271a90: std::sys::thread_local::native::eager::Storage::initialize (thread_local/native/eager.rs:47:13)", +"0x104271a90: std::sys::thread_local::native::eager::Storage::get (src/num/f64.rs:36:45)", +"0x104271a90: std::thread::spawnhook::SPAWN_HOOKS::{{constant}}::{{closure}} (serde_json-1.0.147/src/number.rs:67:29)", +"0x104271a90: core::ops::function::FnOnce::call_once (slice/iter/macros.rs:253:5)", +"0x104271a90: std::thread::local::LocalKey::initialize_with (src/value/de.rs:337:19)", +"0x104271a90: std::thread::local::LocalKey>::set (src/value/de.rs:376:14)", +"0x104271a90: std::thread::spawnhook::ChildSpawnHooks::run (iter/adapters/fuse.rs:148:21)", +"0x104271a90: std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::{{closure}} (src/raw_vec/mod.rs:558:78)", +"0x104271a90: std::sys::backtrace::__rust_begin_short_backtrace (sort/shared/pivot.rs:158:18)", +"0x104275fb4: std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}} (src/thread/mod.rs:558:17)", +"0x104275fb4: as core::ops::function::FnOnce<()>>::call_once (sys/thread_local/mod.rs:272:9)", +"0x104275fb4: std::panicking::catch_unwind::do_call (alloc/src/slice.rs:589:40)", +"0x104275fb4: std::panicking::catch_unwind (alloc/src/slice.rs:552:19)", +"0x104275fb4: std::panic::catch_unwind (src/fmt/mod.rs:359:14)", +"0x104275fb4: std::thread::Builder::spawn_unchecked_::{{closure}} (src/raw_vec/mod.rs:557:30)", +"0x104275fb4: core::ops::function::FnOnce::call_once{{vtable.shim}} (src/raw/mod.rs:253:5)", +"0x1045d99fc: as core::ops::function::FnOnce>::call_once (alloc/src/boxed.rs:1971:9)", +"0x1045d99fc: std::sys::pal::unix::thread::Thread::new::thread_start (serde_json-1.0.147/src/de.rs:107:17)", +"0x1926d9c08: __pthread_cond_wait (???:0:0)", +"0x104551840: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104551840: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104551840: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104551840: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104551840: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104551840: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x104551840: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x104551840: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x104551840: regex_automata::nfa::thompson::nfa::Inner::set_starts (nfa/thompson/nfa.rs:1402:44)", +"0x104551840: regex_automata::nfa::thompson::builder::Builder::build (nfa/thompson/builder.rs:438:13)", +"0x104551840: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:1012:14)", +"0x104547110: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x104547110: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x104547110: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3496:18)", +"0x104547110: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x10457d384: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x10457d384: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x10457d384: regex_syntax::ast::Ast::flags (src/ast/mod.rs:506:20)", +"0x10457d384: regex_syntax::ast::parse::ParserI

::push_group (src/ast/parse.rs:712:34)", +"0x104549004: regex_automata::nfa::thompson::backtrack::Builder::new (nfa/thompson/backtrack.rs:268:23)", +"0x104549004: regex_automata::meta::wrappers::BoundedBacktrackerEngine::new (src/meta/wrappers.rs:207:26)", +"0x104549004: regex_automata::meta::wrappers::BoundedBacktracker::new (src/meta/wrappers.rs:150:9)", +"0x104549004: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:481:13)", +"0x104549004: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", +"0x10458baa4: regex_syntax::hir::literal::Extractor::extract_concat (src/hir/literal.rs:407:45)", +"0x10458baa4: regex_syntax::hir::literal::Extractor::extract (src/hir/literal.rs:190:45)", +"0x10459abe0: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x10459abe0: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x10459abe0: regex_syntax::hir::Properties::union (src/hir/mod.rs:2391:20)", +"0x10459abe0: regex_syntax::hir::Properties::alternation (src/hir/mod.rs:2656:9)", +"0x10459abe0: regex_syntax::hir::Hir::alternation (src/hir/mod.rs:630:21)", +"0x104535c4c: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x104535c4c: regex_syntax::utf8::Utf8Sequences::new (regex-syntax-0.8.8/src/utf8.rs:307:38)", +"0x104535c4c: regex_automata::nfa::thompson::compiler::Compiler::c_unicode_class (nfa/thompson/compiler.rs:1464:28)", +"0x104535c4c: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1026:50)", +"0x104273dc0: alloc::vec::Vec::extend_desugared (src/vec/mod.rs:3741:44)", +"0x104273dc0: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/mod.rs:19:14)", +"0x104273dc0: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (core/src/option.rs:42:9)", +"0x104273dc0: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/meta/regex.rs:34:9)", +"0x104273dc0: as core::iter::traits::collect::FromIterator>::from_iter (src/fmt/rt.rs:3633:9)", +"0x104273dc0: core::iter::traits::iterator::Iterator::collect (src/util/pool.rs:2027:9)", +"0x104273dc0: indicatif::style::segment (src/util/search.rs:42:45)", +"0x104273dc0: indicatif::style::ProgressStyle::new (src/util/search.rs:115:30)", +"0x104213900: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104213900: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104213900: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104213900: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104213900: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104213900: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x104213900: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x104213900: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x104213900: std::sys::os_str::bytes::Slice::to_owned (sys/os_str/bytes.rs:314:33)", +"0x104213900: std::ffi::os_str::OsStr::to_os_string (src/ffi/os_str.rs:984:38)", +"0x104213900: std::path::Path::to_path_buf (std/src/path.rs:2351:34)", +"0x104213900: grimoire_css_lib::core::parser::parser_fs::ParserFs::new (core/parser/parser_fs.rs:36:38)", +"0x104213900: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::new (core/css_builder/css_builder_fs.rs:57:22)", +"0x104213900: grimoire_css_lib::commands::build::build (src/commands/build.rs:37:5)", +"0x104213900: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", +"0x1045f33f8: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1045f33f8: hashbrown::raw::alloc::inner::do_alloc (src/raw/alloc.rs:19:21)", +"0x1045f33f8: hashbrown::raw::RawTableInner::new_uninitialized (src/raw/mod.rs:1476:38)", +"0x1045f33f8: hashbrown::raw::RawTableInner::fallible_with_capacity (src/raw/mod.rs:1515:21)", +"0x1045f33f8: hashbrown::raw::RawTableInner::prepare_resize (src/raw/mod.rs:2584:13)", +"0x1045f33f8: hashbrown::raw::RawTableInner::resize_inner (src/raw/mod.rs:2782:34)", +"0x1045f33f8: hashbrown::raw::RawTableInner::reserve_rehash_inner (src/raw/mod.rs:2670:18)", +"0x1045f33f8: hashbrown::raw::RawTable::reserve_rehash (src/raw/mod.rs:991:24)", +"0x10453eb5c: hashbrown::raw::RawTable::reserve (src/raw/mod.rs:940:22)", +"0x10453eb5c: hashbrown::raw::RawTable::find_or_find_insert_slot (src/raw/mod.rs:1146:14)", +"0x10453eb5c: hashbrown::map::HashMap::find_or_find_insert_slot (hashbrown-0.15.4/src/map.rs:1812:20)", +"0x10453eb5c: hashbrown::map::HashMap::insert (hashbrown-0.15.4/src/map.rs:1792:20)", +"0x10453d308: std::collections::hash::map::HashMap::insert (collections/hash/map.rs:1204:19)", +"0x10453d308: regex_automata::hybrid::dfa::Lazy::add_state (src/hybrid/dfa.rs:2321:33)", +"0x10453d308: regex_automata::hybrid::dfa::Lazy::init_cache (src/hybrid/dfa.rs:2546:18)", +"0x10454957c: regex_automata::util::sparse_set::SparseSet::new (src/util/sparse_set.rs:119:13)", +"0x10454957c: regex_automata::dfa::onepass::InternalBuilder::new (src/dfa/onepass.rs:568:19)", +"0x10454957c: regex_automata::dfa::onepass::Builder::build_from_nfa (src/dfa/onepass.rs:413:9)", +"0x10454957c: regex_automata::meta::wrappers::OnePassEngine::new (src/meta/wrappers.rs:392:18)", +"0x10454957c: regex_automata::meta::wrappers::OnePass::new (src/meta/wrappers.rs:331:17)", +"0x10454957c: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:486:23)", +"0x10454957c: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", +"0x10458bfbc: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x10458bfbc: regex_syntax::hir::literal::Seq::singleton (src/hir/literal.rs:783:30)", +"0x10458bfbc: regex_syntax::hir::literal::Extractor::extract_repetition (src/hir/literal.rs:458:33)", +"0x10458bfbc: regex_syntax::hir::literal::Extractor::extract (src/hir/literal.rs:186:41)", +"0x1045562ac: regex_automata::meta::reverse_inner::prefilter (src/meta/reverse_inner.rs:130:34)", +"0x10454c574: regex_automata::meta::reverse_inner::extract (src/meta/reverse_inner.rs:76:25)", +"0x10454c574: regex_automata::meta::strategy::ReverseInner::new (src/meta/strategy.rs:1568:47)", +"0x10454c574: regex_automata::meta::strategy::new (src/meta/strategy.rs:177:18)", +"0x1045479a0: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x1045479a0: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x1045479a0: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", +"0x1045479a0: regex_automata::meta::regex::Builder::build_many_from_hir (src/meta/regex.rs:3616:25)", +"0x1045479a0: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3498:14)", +"0x1045479a0: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x104257b98: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x104257b98: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x104257b98: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", +"0x104257b98: std::thread::Builder::spawn_unchecked_ (src/thread/mod.rs:512:49)", +"0x104257b98: std::thread::Builder::spawn_unchecked (src/thread/mod.rs:467:37)", +"0x104257b98: std::thread::Builder::spawn (src/thread/mod.rs:399:23)", +"0x104257b98: std::thread::spawn (src/thread/mod.rs:729:20)", +"0x104257b98: indicatif::progress_bar::Ticker::new (indicatif-0.18.3/src/progress_bar.rs:706:27)", +"0x104257b98: indicatif::progress_bar::ProgressBar::stop_and_replace_ticker::{{closure}} (indicatif-0.18.3/src/progress_bar.rs:216:49)", +"0x104257b98: core::option::Option::map (core/src/option.rs:1158:29)", +"0x104257b98: indicatif::progress_bar::ProgressBar::stop_and_replace_ticker (indicatif-0.18.3/src/progress_bar.rs:216:34)", +"0x104257b98: indicatif::progress_bar::ProgressBar::enable_steady_tick (indicatif-0.18.3/src/progress_bar.rs:202:14)", +"0x104257b98: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:158:8)", +"0x104545d84: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x104545d84: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x104545d84: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3486:18)", +"0x104545d84: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x104257390: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104257390: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104257390: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104257390: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104257390: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104257390: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x104257390: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x104257390: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x104257390: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", +"0x104257390: alloc::str::::to_owned (alloc/src/str.rs:211:62)", +"0x104257390: >::from (alloc/src/string.rs:3056:11)", +"0x104257390: <&str as alloc::string::SpecToString>::spec_to_string (alloc/src/string.rs:2977:21)", +"0x104257390: ::to_string (alloc/src/string.rs:2809:9)", +"0x104257390: indicatif::style::ProgressStyle::tick_strings::{{closure}} (indicatif-0.18.3/src/style.rs:150:48)", +"0x104257390: core::iter::adapters::map::map_fold::{{closure}} (iter/adapters/map.rs:88:28)", +"0x104257390: as core::iter::traits::iterator::Iterator>::fold (slice/iter/macros.rs:255:27)", +"0x104257390: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/map.rs:128:19)", +"0x104257390: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", +"0x104257390: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3774:26)", +"0x104257390: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", +"0x104257390: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:62:16)", +"0x104257390: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x104257390: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x104257390: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x104257390: indicatif::style::ProgressStyle::tick_strings (indicatif-0.18.3/src/style.rs:150:68)", +"0x104257390: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:157:51)", +"0x10458bdf4: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x10458bdf4: regex_syntax::hir::literal::Seq::singleton (src/hir/literal.rs:783:30)", +"0x10458bdf4: regex_syntax::hir::literal::Extractor::extract_concat (src/hir/literal.rs:396:23)", +"0x10458bdf4: regex_syntax::hir::literal::Extractor::extract (src/hir/literal.rs:189:45)", +"0x10458b828: regex_syntax::hir::literal::Extractor::extract_repetition (src/hir/literal.rs:449:31)", +"0x10458b828: regex_syntax::hir::literal::Extractor::extract (src/hir/literal.rs:186:41)", +"0x104592518: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x104592518: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x104592518: regex_syntax::hir::Properties::capture (src/hir/mod.rs:2559:20)", +"0x104592518: regex_syntax::hir::Hir::capture (src/hir/mod.rs:408:21)", +"0x104592518: regex_syntax::hir::translate::TranslatorI::hir_capture (src/hir/translate.rs:995:9)", +"0x104592518: ::visit_post (src/hir/translate.rs:443:47)", +"0x10452e26c: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x10452e26c: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x10452e26c: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x104532cb8: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x104532cb8: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x104532cb8: regex_automata::nfa::thompson::nfa::Inner::add (nfa/thompson/nfa.rs:1384:21)", +"0x104552460: regex_automata::nfa::thompson::builder::Builder::build (nfa/thompson/builder.rs:534:42)", +"0x104552460: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:1012:14)", +"0x1045452bc: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x1045452bc: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x1045452bc: regex_syntax::ast::Ast::class_bracketed (src/ast/mod.rs:536:29)", +"0x1045452bc: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:997:38)", +"0x1045452bc: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", +"0x1045452bc: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", +"0x1045452bc: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", +"0x1045452bc: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x104257284: indicatif::style::ProgressStyle::default_spinner (indicatif-0.18.3/src/style.rs:78:9)", +"0x104257284: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:157:18)", +"0x10454789c: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x10454789c: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x10454789c: regex_automata::meta::regex::Builder::build_many_from_hir (src/meta/regex.rs:3613:39)", +"0x10454789c: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3498:14)", +"0x10454789c: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x10457db7c: regex_syntax::ast::parse::ParserI

::pop_group (src/ast/parse.rs:782:51)", +"0x1045ed6cc: alloc::raw_vec::finish_grow (src/raw_vec/mod.rs:0:0)", +"0x104277214: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x104277214: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x104277214: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x10444e1e0: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x10444e1e0: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x10444e1e0: lightningcss::properties::size::SizeHandler::flush (src/properties/size.rs:517:16)", +"0x104429f8c: ::finalize (src/properties/size.rs:481:10)", +"0x104429f8c: lightningcss::declaration::DeclarationHandler::finalize (lightningcss-1.0.0-alpha.68/src/declaration.rs:708:15)", +"0x10441f8a4: lightningcss::declaration::DeclarationBlock::minify (lightningcss-1.0.0-alpha.68/src/declaration.rs:260:13)", +"0x1041e467c: lightningcss::rules::style::StyleRule::minify (src/rules/style.rs:90:8)", +"0x1041783f4: lightningcss::rules::CssRuleList::minify (src/rules/mod.rs:668:40)", +"0x1041745a0: lightningcss::stylesheet::StyleSheet::minify (lightningcss-1.0.0-alpha.68/src/stylesheet.rs:260:16)", +"0x1041745a0: ::optimize (src/infrastructure/lightning_css_optimizer.rs:88:14)", +"0x10421da60: grimoire_css_lib::core::css_builder::css_builder_base::CssBuilder::combine_spells_to_optimized_css_string (core/css_builder/css_builder_base.rs:97:30)", +"0x1045521c8: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x1045521c8: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x1045521c8: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", +"0x1045521c8: regex_automata::util::captures::GroupInfo::new (src/util/captures.rs:1612:22)", +"0x1045521c8: regex_automata::nfa::thompson::nfa::Inner::set_captures (nfa/thompson/nfa.rs:1434:27)", +"0x1045521c8: regex_automata::nfa::thompson::builder::Builder::build (nfa/thompson/builder.rs:439:13)", +"0x1045521c8: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:1012:14)", +"0x1045478b4: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1045478b4: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x1045478b4: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x1045478b4: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x1045478b4: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1045478b4: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x1045478b4: regex_automata::util::pool::inner::Pool::new (src/util/pool.rs:496:30)", +"0x1045478b4: regex_automata::util::pool::Pool::new (src/util/pool.rs:160:37)", +"0x1045478b4: regex_automata::meta::regex::Builder::build_many_from_hir (src/meta/regex.rs:3614:13)", +"0x1045478b4: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3498:14)", +"0x1045478b4: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x10457ef04: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x10457ef04: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x10457ef04: regex_syntax::ast::Ast::repetition (src/ast/mod.rs:541:25)", +"0x10457ef04: regex_syntax::ast::parse::ParserI

::parse_uncounted_repetition (src/ast/parse.rs:1078:26)", +"0x1045454cc: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:1006:35)", +"0x1045454cc: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", +"0x1045454cc: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", +"0x1045454cc: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", +"0x1045454cc: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x1045311d4: regex_automata::nfa::thompson::compiler::Compiler::patch (nfa/thompson/compiler.rs:1637:35)", +"0x104538288: regex_automata::nfa::thompson::compiler::Compiler::c_alt_iter (nfa/thompson/compiler.rs:1121:14)", +"0x10453402c: ::allocate (alloc/src/alloc.rs:250:14)", +"0x10453402c: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x10453402c: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x10453402c: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x10453402c: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x10453402c: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x10453402c: regex_automata::nfa::thompson::compiler::Compiler::c_unicode_class (nfa/thompson/compiler.rs:1404:29)", +"0x10453402c: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1026:50)", +"0x10459be14: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x10459be14: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x10459be14: regex_syntax::hir::Properties::concat (src/hir/mod.rs:2651:20)", +"0x10459be14: regex_syntax::hir::Hir::concat (src/hir/mod.rs:500:21)", +"0x10454b840: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x10454b840: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x10454b840: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", +"0x10454b840: regex_automata::meta::strategy::new (src/meta/strategy.rs:185:8)", +"0x10459c2fc: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x10459c2fc: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x10459c2fc: regex_syntax::hir::Properties::empty (src/hir/mod.rs:2429:20)", +"0x10459c2fc: regex_syntax::hir::Hir::into_parts (src/hir/mod.rs:237:49)", +"0x104599dec: regex_syntax::hir::Hir::alternation (src/hir/mod.rs:578:37)", +"0x10454796c: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x10454796c: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x10454796c: regex_automata::util::pool::Pool::new (src/util/pool.rs:160:14)", +"0x10454796c: regex_automata::meta::regex::Builder::build_many_from_hir (src/meta/regex.rs:3614:13)", +"0x10454796c: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3498:14)", +"0x10454796c: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x1045f54a8: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1045f54a8: alloc::sync::Arc<[T]>::allocate_for_slice::{{closure}} (alloc/src/sync.rs:2071:33)", +"0x1045f54a8: alloc::sync::Arc::allocate_for_layout (alloc/src/sync.rs:1984:19)", +"0x1045f54a8: alloc::sync::Arc<[T]>::allocate_for_slice (alloc/src/sync.rs:2069:13)", +"0x1045f54a8: alloc::sync::Arc<[T]>::copy_from_slice (alloc/src/sync.rs:2083:23)", +"0x1045f54a8: as alloc::sync::ArcFromSlice>::from_slice (alloc/src/sync.rs:2174:18)", +"0x1045f54a8: as core::convert::From<&[T]>>::from (alloc/src/sync.rs:3722:9)", +"0x1045f54a8: regex_automata::util::determinize::state::StateBuilderNFA::to_state (util/determinize/state.rs:288:15)", +"0x1045f54a8: regex_automata::hybrid::dfa::Lazy::add_builder_state (src/hybrid/dfa.rs:2270:45)", +"0x1045f54a8: regex_automata::hybrid::dfa::Lazy::cache_start_one (src/hybrid/dfa.rs:2237:14)", +"0x1045f54a8: regex_automata::hybrid::dfa::Lazy::cache_start_group (src/hybrid/dfa.rs:2194:14)", +"0x10454315c: regex_automata::hybrid::dfa::DFA::start_state (src/hybrid/dfa.rs:1574:32)", +"0x10454315c: regex_automata::hybrid::dfa::DFA::start_state_forward (src/hybrid/dfa.rs:1599:14)", +"0x10454315c: regex_automata::hybrid::search::init_fwd (src/hybrid/search.rs:672:19)", +"0x10454315c: regex_automata::hybrid::search::find_fwd_imp (src/hybrid/search.rs:60:19)", +"0x10454315c: regex_automata::hybrid::search::find_fwd (src/hybrid/search.rs:38:13)", +"0x104580b2c: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x104580b2c: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x104580b2c: regex_syntax::ast::Ast::empty (src/ast/mod.rs:501:20)", +"0x104580b2c: ::drop::{{closure}} (src/ast/mod.rs:1656:28)", +"0x104580b2c: ::drop (src/ast/mod.rs:1657:49)", +"0x10452f490: ::allocate (alloc/src/alloc.rs:250:14)", +"0x10452f490: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x10452f490: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x10452f490: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x10452f490: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x10452f490: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x10452f490: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:54:33)", +"0x10452f490: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x10452f490: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x10452f490: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x10452f490: regex_automata::dfa::remapper::Remapper::new (src/dfa/remapper.rs:93:69)", +"0x10452f490: regex_automata::dfa::onepass::InternalBuilder::shuffle_states (src/dfa/onepass.rs:740:28)", +"0x10454ab70: regex_automata::dfa::onepass::InternalBuilder::build (src/dfa/onepass.rs:724:14)", +"0x10454ab70: regex_automata::dfa::onepass::Builder::build_from_nfa (src/dfa/onepass.rs:413:57)", +"0x10454ab70: regex_automata::meta::wrappers::OnePassEngine::new (src/meta/wrappers.rs:392:18)", +"0x10454ab70: regex_automata::meta::wrappers::OnePass::new (src/meta/wrappers.rs:331:17)", +"0x10454ab70: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:486:23)", +"0x10454ab70: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", +"0x1045eb8b8: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x1045eb8b8: alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle (src/raw_vec/mod.rs:557:35)", +"0x104222c08: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", +"0x104222c08: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", +"0x104222c08: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", +"0x104222c08: alloc::vec::Vec::append_elements (src/vec/mod.rs:2732:14)", +"0x104222c08: as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter>>::spec_extend (src/vec/spec_extend.rs:61:23)", +"0x104222c08: alloc::vec::Vec::extend_from_slice (src/vec/mod.rs:3262:14)", +"0x104222c08: alloc::string::String::push_str (alloc/src/string.rs:1113:18)", +"0x104222c08: grimoire_css_lib::core::css_builder::css_builder_base::CssBuilder::build_joined_css_and_pieces (core/css_builder/css_builder_base.rs:232:38)", +"0x10459b5f8: regex_syntax::hir::Hir::concat (src/hir/mod.rs:449:37)", +"0x10454c4e8: regex_automata::meta::reverse_inner::top_concat (src/meta/reverse_inner.rs:183:21)", +"0x10454c4e8: regex_automata::meta::reverse_inner::extract (src/meta/reverse_inner.rs:62:28)", +"0x10454c4e8: regex_automata::meta::strategy::ReverseInner::new (src/meta/strategy.rs:1568:47)", +"0x10454c4e8: regex_automata::meta::strategy::new (src/meta/strategy.rs:177:18)", +"0x104226cc4: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104226cc4: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104226cc4: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104226cc4: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104226cc4: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104226cc4: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x104226cc4: alloc::str::join_generic_copy (alloc/src/str.rs:157:22)", +"0x1042241a8: alloc::str:: for [S]>::join (alloc/src/str.rs:76:46)", +"0x1042241a8: alloc::slice::::join (alloc/src/slice.rs:596:9)", +"0x1042241a8: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::adapt_targets (core/css_generator/css_generator_base.rs:351:73)", +"0x1042241a8: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::generate_css (core/css_generator/css_generator_base.rs:176:22)", +"0x10459b910: ::allocate (alloc/src/alloc.rs:250:14)", +"0x10459b910: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x10459b910: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x10459b910: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x10459b910: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x10459b910: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x10459b910: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x10459b910: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x10459b910: regex_syntax::hir::Hir::concat (src/hir/mod.rs:455:48)", +"0x104545960: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x104545960: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x104545960: regex_syntax::ast::Ast::literal (src/ast/mod.rs:511:22)", +"0x104545960: regex_syntax::ast::parse::Primitive::into_ast (src/ast/parse.rs:56:40)", +"0x104545960: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:1020:63)", +"0x104545960: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", +"0x104545960: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", +"0x104545960: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", +"0x104545960: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x104556b54: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", +"0x104556b54: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", +"0x104556b54: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", +"0x104556b54: alloc::vec::Vec::extend_with (src/vec/mod.rs:3355:14)", +"0x104556b54: alloc::vec::Vec::resize (src/vec/mod.rs:3234:18)", +"0x104556b54: regex_automata::dfa::onepass::Cache::reset (src/dfa/onepass.rs:2563:29)", +"0x104556b54: regex_automata::dfa::onepass::Cache::new (src/dfa/onepass.rs:2517:15)", +"0x104556b54: regex_automata::dfa::onepass::DFA::create_cache (src/dfa/onepass.rs:1374:9)", +"0x104556b54: regex_automata::meta::wrappers::OnePassCache::new::{{closure}} (src/meta/wrappers.rs:481:57)", +"0x104556b54: core::option::Option::map (core/src/option.rs:1158:29)", +"0x104556b54: regex_automata::meta::wrappers::OnePassCache::new (src/meta/wrappers.rs:481:45)", +"0x104556b54: regex_automata::meta::wrappers::OnePass::create_cache (src/meta/wrappers.rs:335:9)", +"0x104556b54: ::create_cache (src/meta/strategy.rs:678:35)", +"0x104549c38: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:507:30)", +"0x104549c38: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", +"0x10415cadc: ::allocate (alloc/src/alloc.rs:250:14)", +"0x10415cadc: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x10415cadc: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x10415cadc: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x10415cadc: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x10415cadc: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x10415cadc: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x10415cadc: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x10415cadc: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", +"0x10415cadc: alloc::str::::to_owned (alloc/src/str.rs:211:62)", +"0x10415cadc: as alloc::string::SpecToString>::spec_to_string (alloc/src/string.rs:3004:18)", +"0x10415cadc: ::to_string (alloc/src/string.rs:2809:9)", +"0x10415cadc: grimoire_css_lib::core::config::config_fs::ConfigFs::load_external_scrolls (core/config/config_fs.rs:612:14)", +"0x10415cadc: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:181:26)", +"0x104548b84: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:469:19)", +"0x104548b84: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", +"0x104274d4c: ::allocate (core/css_builder/css_builder_base.rs:250:14)", +"0x104274d4c: alloc::raw_vec::RawVecInner::try_allocate_in (src/num/uint_macros.rs:476:47)", +"0x104274d4c: alloc::raw_vec::RawVecInner::with_capacity_in (src/num/uint_macros.rs:422:15)", +"0x104274d4c: alloc::raw_vec::RawVec::with_capacity_in (src/num/uint_macros.rs:190:20)", +"0x104274d4c: alloc::vec::Vec::with_capacity_in (src/fmt/rt.rs:929:20)", +"0x104274d4c: alloc::vec::Vec::with_capacity (src/fmt/rt.rs:500:9)", +"0x104274d4c: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (core/src/option.rs:31:34)", +"0x104274d4c: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/meta/regex.rs:34:9)", +"0x104274d4c: as core::iter::traits::collect::FromIterator>::from_iter (src/fmt/rt.rs:3633:9)", +"0x104274d4c: core::iter::traits::iterator::Iterator::collect (src/util/pool.rs:2027:9)", +"0x104274d4c: indicatif::style::ProgressStyle::new (src/util/search.rs:121:18)", +"0x104568f14: regex_automata::hybrid::regex::Cache::new (src/hybrid/regex.rs:614:23)", +"0x104568f14: regex_automata::hybrid::regex::Regex::create_cache (src/hybrid/regex.rs:192:9)", +"0x104568f14: regex_automata::meta::wrappers::HybridCache::new::{{closure}} (src/meta/wrappers.rs:773:56)", +"0x104568f14: core::option::Option::map (core/src/option.rs:1158:29)", +"0x104568f14: regex_automata::meta::wrappers::HybridCache::new (src/meta/wrappers.rs:773:44)", +"0x104568f14: regex_automata::meta::wrappers::Hybrid::create_cache (src/meta/wrappers.rs:526:9)", +"0x104568f14: ::create_cache (src/meta/strategy.rs:679:33)", +"0x104568f14: ::create_cache (src/meta/strategy.rs:1304:19)", +"0x1045b69c0: ::allocate (alloc/src/boxed.rs:250:14)", +"0x1045b69c0: alloc::raw_vec::RawVecInner::try_allocate_in (alloc/src/alloc.rs:476:47)", +"0x1045b69c0: alloc::raw_vec::RawVecInner::with_capacity_in (alloc/src/alloc.rs:422:15)", +"0x1045b69c0: alloc::raw_vec::RawVec::with_capacity_in (alloc/src/alloc.rs:190:20)", +"0x1045b69c0: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1045b69c0: ::to_vec_in::ConvertVec>::to_vec (src/num/uint_macros.rs:445:29)", +"0x1045b69c0: alloc::slice::::to_vec_in (src/num/uint_macros.rs:398:16)", +"0x1045b69c0: alloc::slice::::to_vec (src/num/uint_macros.rs:374:14)", +"0x1045b69c0: std::sys::os_str::bytes::Slice::to_owned (src/fmt/mod.rs:314:33)", +"0x1045b69c0: std::ffi::os_str::OsStr::to_os_string (src/io/error.rs:984:38)", +"0x1045b69c0: std::path::Path::to_path_buf (src/ptr/mut_ptr.rs:2351:34)", +"0x1045b69c0: std::path::Path::_join (src/ptr/mut_ptr.rs:2746:28)", +"0x10415f47c: std::path::Path::join (std/src/path.rs:2742:14)", +"0x10415f47c: grimoire_css_lib::core::filesystem::Filesystem::get_config_path (src/core/filesystem.rs:53:24)", +"0x104159580: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:172:27)", +"0x104556084: regex_syntax::hir::Hir::repetition (src/hir/mod.rs:395:21)", +"0x104556084: regex_automata::meta::reverse_inner::flatten (src/meta/reverse_inner.rs:209:39)", +"0x104555dbc: regex_automata::meta::reverse_inner::flatten::{{closure}} (src/meta/reverse_inner.rs:217:43)", +"0x104555dbc: core::iter::adapters::map::map_fold::{{closure}} (iter/adapters/map.rs:88:28)", +"0x104555dbc: as core::iter::traits::iterator::Iterator>::fold (slice/iter/macros.rs:255:27)", +"0x104555dbc: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/map.rs:128:19)", +"0x104555dbc: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", +"0x104555dbc: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3774:26)", +"0x104555dbc: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", +"0x104555dbc: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:62:16)", +"0x104555dbc: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x104555dbc: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x104555dbc: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x104555dbc: regex_automata::meta::reverse_inner::flatten (src/meta/reverse_inner.rs:217:55)", +"0x104555e80: regex_automata::meta::reverse_inner::flatten (src/meta/reverse_inner.rs:209:62)", +"0x10454be80: regex_automata::meta::reverse_inner::top_concat::{{closure}} (src/meta/reverse_inner.rs:183:53)", +"0x10454be80: core::iter::adapters::map::map_fold::{{closure}} (iter/adapters/map.rs:88:28)", +"0x10454be80: as core::iter::traits::iterator::Iterator>::fold (slice/iter/macros.rs:255:27)", +"0x10454be80: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/map.rs:128:19)", +"0x10454be80: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", +"0x10454be80: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3774:26)", +"0x10454be80: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", +"0x10454be80: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:62:16)", +"0x10454be80: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x10454be80: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x10454be80: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x10454be80: regex_automata::meta::reverse_inner::top_concat (src/meta/reverse_inner.rs:183:65)", +"0x10454be80: regex_automata::meta::reverse_inner::extract (src/meta/reverse_inner.rs:62:28)", +"0x10454be80: regex_automata::meta::strategy::ReverseInner::new (src/meta/strategy.rs:1568:47)", +"0x10454be80: regex_automata::meta::strategy::new (src/meta/strategy.rs:177:18)", +"0x104599444: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104599444: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104599444: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104599444: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104599444: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104599444: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x104599444: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:54:33)", +"0x104599444: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x104599444: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x104599444: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x104599444: regex_syntax::unicode::hir_class (regex-syntax-0.8.8/src/unicode.rs:456:10)", +"0x104599444: regex_syntax::unicode::perl_digit::imp (regex-syntax-0.8.8/src/unicode.rs:445:12)", +"0x104599444: regex_syntax::unicode::perl_digit (regex-syntax-0.8.8/src/unicode.rs:448:5)", +"0x104599444: regex_syntax::hir::translate::TranslatorI::hir_perl_unicode_class (src/hir/translate.rs:1089:22)", +"0x10459127c: ::visit_post (src/hir/translate.rs:400:36)", +"0x1045cca28: ::allocate (alloc/src/boxed.rs:250:14)", +"0x1045cca28: alloc::sync::Arc::new_uninit::{{closure}} (src/str/iter.rs:504:33)", +"0x1045cca28: alloc::sync::Arc::allocate_for_layout (src/str/iter.rs:1984:19)", +"0x1045cca28: alloc::sync::Arc::new_uninit (src/str/iter.rs:502:27)", +"0x1045cca28: std::thread::Thread::new (serde_json-1.0.147/src/ser.rs:1453:27)", +"0x104257810: std::thread::Builder::spawn_unchecked_ (src/thread/mod.rs:502:25)", +"0x104257810: std::thread::Builder::spawn_unchecked (src/thread/mod.rs:467:37)", +"0x104257810: std::thread::Builder::spawn (src/thread/mod.rs:399:23)", +"0x104257810: std::thread::spawn (src/thread/mod.rs:729:20)", +"0x104257810: indicatif::progress_bar::Ticker::new (indicatif-0.18.3/src/progress_bar.rs:706:27)", +"0x104257810: indicatif::progress_bar::ProgressBar::stop_and_replace_ticker::{{closure}} (indicatif-0.18.3/src/progress_bar.rs:216:49)", +"0x104257810: core::option::Option::map (core/src/option.rs:1158:29)", +"0x104257810: indicatif::progress_bar::ProgressBar::stop_and_replace_ticker (indicatif-0.18.3/src/progress_bar.rs:216:34)", +"0x104257810: indicatif::progress_bar::ProgressBar::enable_steady_tick (indicatif-0.18.3/src/progress_bar.rs:202:14)", +"0x104257810: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:158:8)", +"0x10454a11c: regex_automata::meta::wrappers::HybridEngine::new (src/meta/wrappers.rs:590:18)", +"0x10454a11c: regex_automata::meta::wrappers::Hybrid::new (src/meta/wrappers.rs:522:16)", +"0x10454a11c: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:532:21)", +"0x10454a11c: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", +"0x1045ea95c: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1045ea95c: hashbrown::raw::alloc::inner::do_alloc (src/raw/alloc.rs:19:21)", +"0x1045ea95c: hashbrown::raw::RawTableInner::new_uninitialized (src/raw/mod.rs:1476:38)", +"0x1045ea95c: hashbrown::raw::RawTableInner::fallible_with_capacity (src/raw/mod.rs:1515:21)", +"0x1045ea95c: hashbrown::raw::RawTableInner::prepare_resize (src/raw/mod.rs:2584:13)", +"0x1045ea95c: hashbrown::raw::RawTableInner::resize_inner (src/raw/mod.rs:2782:34)", +"0x1045ea95c: hashbrown::raw::RawTableInner::reserve_rehash_inner (src/raw/mod.rs:2670:18)", +"0x1045ea95c: hashbrown::raw::RawTable::reserve_rehash (src/raw/mod.rs:991:24)", +"0x104158ed8: hashbrown::raw::RawTable::reserve (src/raw/mod.rs:940:22)", +"0x104158ed8: hashbrown::raw::RawTable::find_or_find_insert_slot (src/raw/mod.rs:1146:14)", +"0x104158ed8: hashbrown::map::HashMap::find_or_find_insert_slot (hashbrown-0.15.4/src/map.rs:1812:20)", +"0x104158ed8: hashbrown::map::HashMap::insert (hashbrown-0.15.4/src/map.rs:1792:20)", +"0x104158c70: std::collections::hash::map::HashMap::insert (collections/hash/map.rs:1204:19)", +"0x104158c70: grimoire_css_lib::core::component::COMPONENTS_MAP::{{closure}} (src/core/component.rs:483:11)", +"0x104158c70: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", +"0x104158b40: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", +"0x104158b40: once_cell::sync::Lazy::force::{{closure}} (once_cell-1.21.3/src/lib.rs:1310:28)", +"0x104158b40: once_cell::sync::OnceCell::get_or_init::{{closure}} (once_cell-1.21.3/src/lib.rs:1120:57)", +"0x104158b40: once_cell::imp::OnceCell::initialize::{{closure}} (once_cell-1.21.3/src/imp_std.rs:72:23)", +"0x1045288c8: core::ops::function::impls:: for &mut F>::call_mut (src/ops/function.rs:301:21)", +"0x1045288c8: once_cell::imp::initialize_or_wait (once_cell-1.21.3/src/imp_std.rs:196:20)", +"0x1045eb6ec: once_cell::imp::OnceCell::initialize (once_cell-1.21.3/src/imp_std.rs:68:9)", +"0x104158908: once_cell::sync::OnceCell::get_or_try_init (once_cell-1.21.3/src/lib.rs:1161:20)", +"0x104158908: once_cell::sync::OnceCell::get_or_init (once_cell-1.21.3/src/lib.rs:1120:24)", +"0x104158908: once_cell::sync::Lazy::force (once_cell-1.21.3/src/lib.rs:1309:23)", +"0x104158908: as core::ops::deref::Deref>::deref (once_cell-1.21.3/src/lib.rs:1376:13)", +"0x104158908: grimoire_css_lib::core::component::get_css_property (src/core/component.rs:510:5)", +"0x1041707b8: grimoire_css_lib::core::spell::Spell::new (src/core/spell.rs:257:55)", +"0x1041732e4: grimoire_css_lib::core::spell::Spell::generate_spells_from_classes (src/core/spell.rs:421:38)", +"0x104580bd0: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x104580bd0: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x104580bd0: regex_syntax::ast::Ast::empty (src/ast/mod.rs:501:20)", +"0x104580bd0: ::drop::{{closure}} (src/ast/mod.rs:1656:28)", +"0x104580bd0: ::drop (src/ast/mod.rs:0:0)", +"0x10452e108: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x10452e108: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x10452e108: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x104547568: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x104547568: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x104547568: regex_automata::meta::regex::RegexInfo::new (src/meta/regex.rs:1940:19)", +"0x104547568: regex_automata::meta::regex::Builder::build_many_from_hir (src/meta/regex.rs:3609:20)", +"0x104547568: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3498:14)", +"0x104547568: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x10457ddb8: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x10457ddb8: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x10457ddb8: regex_syntax::ast::Ast::alternation (src/ast/mod.rs:551:26)", +"0x10457ddb8: regex_syntax::ast::Alternation::into_ast (src/ast/mod.rs:640:18)", +"0x10457ddb8: regex_syntax::ast::parse::ParserI

::pop_group (src/ast/parse.rs:779:42)", +"0x104144dfc: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x104144dfc: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x104144dfc: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x1041456b4: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x1041456b4: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x1041456b4: glob::glob_with (glob-0.3.3/src/lib.rs:254:22)", +"0x1041456b4: glob::glob (glob-0.3.3/src/lib.rs:165:5)", +"0x10459b9a0: regex_syntax::hir::Hir::concat (src/hir/mod.rs:486:34)", +"0x10452db5c: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x10452db5c: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x10452db5c: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x10453d2dc: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x10453d2dc: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x10453d2dc: regex_automata::hybrid::dfa::Lazy::add_state (src/hybrid/dfa.rs:2320:27)", +"0x10453d2dc: regex_automata::hybrid::dfa::Lazy::init_cache (src/hybrid/dfa.rs:2546:18)", +"0x104156a58: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x104156a58: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x104156a58: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x104273300: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x104273300: alloc::vec::Vec::push (src/fmt/rt.rs:2522:22)", +"0x104273300: indicatif::style::Template::from_str_with_tab_width (src/util/search.rs:596:27)", +"0x104273300: indicatif::style::Template::from_str (src/util/search.rs:643:9)", +"0x10425700c: indicatif::style::ProgressStyle::default_bar (indicatif-0.18.3/src/style.rs:73:19)", +"0x10425700c: indicatif::state::BarState::new (indicatif-0.18.3/src/state.rs:32:20)", +"0x10425700c: indicatif::progress_bar::ProgressBar::with_draw_target (indicatif-0.18.3/src/progress_bar.rs:74:40)", +"0x10425700c: indicatif::progress_bar::ProgressBar::new_spinner (indicatif-0.18.3/src/progress_bar.rs:151:18)", +"0x10425700c: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:156:14)", +"0x10459b9c0: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x10459b9c0: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x10459b9c0: regex_syntax::hir::Hir::concat (src/hir/mod.rs:486:29)", +"0x1045560cc: regex_automata::meta::reverse_inner::flatten (src/meta/reverse_inner.rs:217:13)", +"0x10457db94: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x10457db94: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x10457db94: regex_syntax::ast::parse::ParserI

::pop_group (src/ast/parse.rs:782:29)", +"0x104538330: regex_automata::nfa::thompson::compiler::Compiler::c_alt_slice::{{closure}} (nfa/thompson/compiler.rs:1079:62)", +"0x104538330: core::ops::function::impls:: for &mut F>::call_once (src/ops/function.rs:313:21)", +"0x104538330: core::option::Option::map (core/src/option.rs:1158:29)", +"0x104538330: as core::iter::traits::iterator::Iterator>::next (iter/adapters/map.rs:107:26)", +"0x104538330: regex_automata::nfa::thompson::compiler::Compiler::c_alt_iter (nfa/thompson/compiler.rs:1125:23)", +"0x104146a74: std::path::Path::join (std/src/path.rs:2742:14)", +"0x104146a74: glob::fill_todo (glob-0.3.3/src/lib.rs:926:22)", +"0x104147384: glob::fill_todo::{{closure}} (glob-0.3.3/src/lib.rs:899:13)", +"0x104147384: glob::fill_todo (glob-0.3.3/src/lib.rs:934:17)", +"0x1041676a8: ::next (glob-0.3.3/src/lib.rs:397:17)", +"0x1041676a8: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", +"0x1041676a8: core::iter::adapters::fuse::and_then_or_clear (iter/adapters/fuse.rs:469:13)", +"0x1041676a8: as core::iter::adapters::fuse::FuseImpl>::next (iter/adapters/fuse.rs:301:9)", +"0x1041676a8: as core::iter::traits::iterator::Iterator>::next (iter/adapters/fuse.rs:50:9)", +"0x1041676a8: as core::iter::traits::iterator::Iterator>::next (iter/adapters/flatten.rs:852:43)", +"0x104548cb0: regex_automata::nfa::thompson::pikevm::Builder::new (nfa/thompson/pikevm.rs:251:23)", +"0x104548cb0: regex_automata::meta::wrappers::PikeVMEngine::new (src/meta/wrappers.rs:82:22)", +"0x104548cb0: regex_automata::meta::wrappers::PikeVM::new (src/meta/wrappers.rs:57:9)", +"0x104548cb0: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:479:22)", +"0x104548cb0: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", +"0x104547734: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x104547734: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x104547734: regex_syntax::hir::Properties::union (src/hir/mod.rs:2391:20)", +"0x104547734: regex_automata::meta::regex::RegexInfo::new (src/meta/regex.rs:1942:27)", +"0x104547734: regex_automata::meta::regex::Builder::build_many_from_hir (src/meta/regex.rs:3609:20)", +"0x104547734: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3498:14)", +"0x104547734: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x104538b88: regex_automata::nfa::thompson::compiler::Utf8Compiler::add (nfa/thompson/compiler.rs:1813:14)", +"0x104535c9c: regex_automata::nfa::thompson::compiler::Compiler::c_unicode_class (nfa/thompson/compiler.rs:1465:27)", +"0x104535c9c: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1026:50)", +"0x104591728: regex_syntax::hir::translate::TranslatorI::pop_concat_expr (src/hir/translate.rs:739:44)", +"0x104591728: ::visit_post (src/hir/translate.rs:447:45)", +"0x10457c04c: regex_syntax::ast::parse::ParserI

::pop_group_end (src/ast/parse.rs:800:31)", +"0x104545b00: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:1023:24)", +"0x104545b00: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", +"0x104545b00: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", +"0x104545b00: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", +"0x104545b00: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x104552348: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x104552348: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x104552348: regex_automata::nfa::thompson::builder::Builder::build (nfa/thompson/builder.rs:451:29)", +"0x104552348: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:1012:14)", +"0x1045301f4: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x1045301f4: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x1045301f4: regex_syntax::hir::Properties::class (src/hir/mod.rs:2467:20)", +"0x1045301f4: regex_syntax::hir::Hir::class (src/hir/mod.rs:365:21)", +"0x1045510b8: regex_syntax::hir::Hir::dot (src/hir/mod.rs:664:29)", +"0x1045510b8: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:997:30)", +"0x104592498: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x104592498: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x104592498: regex_syntax::hir::translate::TranslatorI::hir_capture (src/hir/translate.rs:995:55)", +"0x104592498: ::visit_post (src/hir/translate.rs:443:47)", +"0x104556154: regex_automata::meta::reverse_inner::flatten (src/meta/reverse_inner.rs:207:34)", +"0x104258bcc: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", +"0x104258bcc: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", +"0x104258bcc: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", +"0x104258bcc: alloc::vec::Vec::append_elements (src/vec/mod.rs:2732:14)", +"0x104258bcc: alloc::vec::Vec::append (src/vec/mod.rs:2721:18)", +"0x104258bcc: browserslist::resolve::{{closure}} (browserslist-rs-0.19.0/src/lib.rs:122:26)", +"0x104258bcc: as core::iter::traits::iterator::Iterator>::try_fold::enumerate::{{closure}} (iter/adapters/enumerate.rs:119:27)", +"0x104258bcc: as core::iter::traits::iterator::Iterator>::try_fold (src/vec/into_iter.rs:351:25)", +"0x104258bcc: as core::iter::traits::iterator::Iterator>::try_fold (iter/adapters/enumerate.rs:125:19)", +"0x104258bcc: browserslist::resolve (browserslist-rs-0.19.0/src/lib.rs:111:10)", +"0x104258bcc: lightningcss::targets::Browsers::from_browserslist_with_config (lightningcss-1.0.0-alpha.68/src/targets.rs:64:25)", +"0x104258bcc: lightningcss::targets::Browsers::from_browserslist (lightningcss-1.0.0-alpha.68/src/targets.rs:54:5)", +"0x104258bcc: grimoire_css_lib::infrastructure::lightning_css_optimizer::LightningCssOptimizer::from_content (src/infrastructure/lightning_css_optimizer.rs:27:24)", +"0x104258bcc: grimoire_css_lib::infrastructure::lightning_css_optimizer::LightningCssOptimizer::new (src/infrastructure/lightning_css_optimizer.rs:59:9)", +"0x104258bcc: grimoire_css_lib::start (grimoire-css/src/lib.rs:73:25)", +"0x104258bcc: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:164:11)", +"0x10457b4c8: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x10457b4c8: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x10457b4c8: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x1045830fc: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x1045830fc: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x1045830fc: regex_syntax::ast::ClassSetUnion::push (src/ast/mod.rs:1255:20)", +"0x10457e97c: regex_syntax::ast::parse::ParserI

::parse_set_class (src/ast/parse.rs:1929:27)", +"0x104257290: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104257290: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104257290: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104257290: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104257290: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104257290: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x104257290: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:54:33)", +"0x104257290: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x104257290: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x104257290: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x104257290: indicatif::style::ProgressStyle::tick_strings (indicatif-0.18.3/src/style.rs:150:68)", +"0x104257290: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:157:51)", +"0x10415d90c: as core::iter::traits::iterator::Iterator>::next (iter/adapters/flatten.rs:226:20)", +"0x10415d90c: grimoire_css_lib::core::config::config_fs::ConfigFs::load_external_variables (core/config/config_fs.rs:729:30)", +"0x10415d90c: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:184:28)", +"0x104148230: std::path::Path::join (std/src/path.rs:2742:14)", +"0x104148230: std::sys::fs::unix::DirEntry::path (sys/fs/unix.rs:885:23)", +"0x104148230: std::fs::DirEntry::path (std/src/fs.rs:2329:16)", +"0x104148230: glob::fill_todo::{{closure}}::{{closure}}::{{closure}} (glob-0.3.3/src/lib.rs:944:31)", +"0x104148230: core::result::Result::map (core/src/result.rs:801:25)", +"0x104148230: glob::fill_todo::{{closure}}::{{closure}} (glob-0.3.3/src/lib.rs:940:23)", +"0x104148230: core::iter::adapters::map::map_try_fold::{{closure}} (iter/adapters/map.rs:95:28)", +"0x104148230: core::iter::traits::iterator::Iterator::try_fold (iter/traits/iterator.rs:2426:21)", +"0x104148230: as core::iter::traits::iterator::Iterator>::try_fold (iter/adapters/map.rs:121:19)", +"0x104148230: as core::iter::traits::iterator::Iterator>::try_fold (iter/adapters/mod.rs:192:14)", +"0x104148230: core::iter::traits::iterator::Iterator::try_for_each (iter/traits/iterator.rs:2487:14)", +"0x104148230: as core::iter::traits::iterator::Iterator>::next (iter/adapters/mod.rs:174:14)", +"0x1041469a4: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:25:41)", +"0x1041469a4: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x1041469a4: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x1041469a4: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x1041469a4: as core::iter::traits::collect::FromIterator>>::from_iter::{{closure}} (core/src/result.rs:2054:51)", +"0x1041469a4: core::iter::adapters::try_process (iter/adapters/mod.rs:160:17)", +"0x1041469a4: as core::iter::traits::collect::FromIterator>>::from_iter (core/src/result.rs:2054:9)", +"0x1041469a4: glob::fill_todo::{{closure}} (glob-0.3.3/src/lib.rs:949:18)", +"0x1041469a4: core::result::Result::and_then (core/src/result.rs:1415:22)", +"0x1041469a4: glob::fill_todo (glob-0.3.3/src/lib.rs:938:43)", +"0x104227058: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104227058: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104227058: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104227058: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104227058: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104227058: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x104227058: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x104227058: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x104227058: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", +"0x104227058: alloc::str::::to_owned (alloc/src/str.rs:211:62)", +"0x104227058: >::from (alloc/src/string.rs:3068:11)", +"0x104227058: ::spec_to_string (alloc/src/string.rs:2848:9)", +"0x104227058: ::to_string (alloc/src/string.rs:2809:9)", +"0x104227058: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::escape_css_class_name::{{closure}} (core/css_generator/css_generator_base.rs:299:27)", +"0x1042264c0: core::iter::adapters::map::map_try_fold::{{closure}} (iter/adapters/map.rs:95:28)", +"0x1042264c0: core::iter::traits::iterator::Iterator::try_fold (iter/traits/iterator.rs:2426:21)", +"0x1042264c0: as core::iter::traits::iterator::Iterator>::try_fold (iter/adapters/map.rs:121:19)", +"0x1042264c0: as core::iter::traits::iterator::Iterator>::try_fold (iter/adapters/mod.rs:192:14)", +"0x1042264c0: core::iter::traits::iterator::Iterator::try_for_each (iter/traits/iterator.rs:2487:14)", +"0x1042264c0: as core::iter::traits::iterator::Iterator>::next (iter/adapters/mod.rs:174:14)", +"0x1042264c0: >::from_iter (alloc/src/string.rs:2360:24)", +"0x1042264c0: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x1042264c0: as core::iter::traits::collect::FromIterator>>::from_iter::{{closure}} (core/src/result.rs:2054:51)", +"0x1042264c0: core::iter::adapters::try_process (iter/adapters/mod.rs:160:17)", +"0x1042264c0: as core::iter::traits::collect::FromIterator>>::from_iter (core/src/result.rs:2054:9)", +"0x1042264c0: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::escape_css_class_name (core/css_generator/css_generator_base.rs:301:14)", +"0x1042264c0: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::generate_css_class_name (core/css_generator/css_generator_base.rs:238:43)", +"0x104223f0c: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::generate_css (core/css_generator/css_generator_base.rs:154:14)", +"0x104145080: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", +"0x104145080: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", +"0x104145080: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", +"0x104145080: alloc::vec::Vec::append_elements (src/vec/mod.rs:2732:14)", +"0x104145080: as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter>>::spec_extend (src/vec/spec_extend.rs:61:23)", +"0x104145080: alloc::vec::Vec::extend_from_slice (src/vec/mod.rs:3262:14)", +"0x104145080: std::sys::os_str::bytes::Buf::push_slice (sys/os_str/bytes.rs:139:20)", +"0x104145080: ::spec_push_to (src/ffi/os_str.rs:268:27)", +"0x104145080: std::ffi::os_str::OsString::push (src/ffi/os_str.rs:284:11)", +"0x104145080: std::path::PathBuf::_push (std/src/path.rs:1382:20)", +"0x104145080: std::path::PathBuf::push (std/src/path.rs:1301:14)", +"0x104145080: >::extend::{{closure}} (std/src/path.rs:1931:49)", +"0x104145080: core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (iter/traits/iterator.rs:824:29)", +"0x104145080: core::iter::adapters::map::map_fold::{{closure}} (iter/adapters/map.rs:88:21)", +"0x104145080: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/peekable.rs:113:30)", +"0x104145080: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/map.rs:128:19)", +"0x104145080: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", +"0x104145080: >::extend (std/src/path.rs:1931:26)", +"0x104145080: >::from_iter (std/src/path.rs:1909:13)", +"0x104145080: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x104145080: glob::glob_with (glob-0.3.3/src/lib.rs:224:50)", +"0x104145080: glob::glob (glob-0.3.3/src/lib.rs:165:5)", +"0x10452dd74: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x10452dd74: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x10452dd74: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x10452f94c: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x10452f94c: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x10452f94c: regex_automata::dfa::onepass::InternalBuilder::stack_push (src/dfa/onepass.rs:921:20)", +"0x10454a7b0: regex_automata::dfa::onepass::InternalBuilder::build (src/dfa/onepass.rs:638:18)", +"0x10454a7b0: regex_automata::dfa::onepass::Builder::build_from_nfa (src/dfa/onepass.rs:413:57)", +"0x10454a7b0: regex_automata::meta::wrappers::OnePassEngine::new (src/meta/wrappers.rs:392:18)", +"0x10454a7b0: regex_automata::meta::wrappers::OnePass::new (src/meta/wrappers.rs:331:17)", +"0x10454a7b0: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:486:23)", +"0x10454a7b0: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", +"0x1045923a8: regex_syntax::hir::Hir::dot (src/hir/mod.rs:0:0)", +"0x1045923a8: regex_syntax::hir::translate::TranslatorI::hir_dot (src/hir/translate.rs:916:12)", +"0x1045923a8: ::visit_post (src/hir/translate.rs:393:47)", +"0x1045851b4: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x1045851b4: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x1045851b4: regex_syntax::ast::Ast::empty (src/ast/mod.rs:501:20)", +"0x1045851b4: regex_syntax::ast::parse::ParserI

::parse_group (src/ast/parse.rs:1286:31)", +"0x10457d298: regex_syntax::ast::parse::ParserI

::push_group (src/ast/parse.rs:705:20)", +"0x10425717c: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x10425717c: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x10425717c: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", +"0x10425717c: indicatif::progress_bar::ProgressBar::with_draw_target (indicatif-0.18.3/src/progress_bar.rs:74:20)", +"0x10425717c: indicatif::progress_bar::ProgressBar::new_spinner (indicatif-0.18.3/src/progress_bar.rs:151:18)", +"0x10425717c: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:156:14)", +"0x1045917a0: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x1045917a0: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x1045917a0: ::visit_post (src/hir/translate.rs:449:31)", +"0x104545f24: ::visit_pre (src/hir/translate.rs:354:22)", +"0x104545f24: regex_syntax::ast::visitor::HeapVisitor::visit (src/ast/visitor.rs:215:21)", +"0x104545f24: regex_syntax::ast::visitor::visit (src/ast/visitor.rs:119:24)", +"0x104545f24: regex_syntax::hir::translate::Translator::translate (src/hir/translate.rs:174:9)", +"0x104545f24: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3494:18)", +"0x104545f24: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x10453906c: regex_automata::nfa::thompson::compiler::Utf8Compiler::compile_from (nfa/thompson/compiler.rs:1822:25)", +"0x1045e4dc0: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1045e4dc0: hashbrown::raw::alloc::inner::do_alloc (src/raw/alloc.rs:19:21)", +"0x1045e4dc0: hashbrown::raw::RawTableInner::new_uninitialized (src/raw/mod.rs:1476:38)", +"0x1045e4dc0: hashbrown::raw::RawTableInner::fallible_with_capacity (src/raw/mod.rs:1515:21)", +"0x1045e4dc0: hashbrown::raw::RawTableInner::prepare_resize (src/raw/mod.rs:2584:13)", +"0x1045e4dc0: hashbrown::raw::RawTableInner::resize_inner (src/raw/mod.rs:2782:34)", +"0x1045e4dc0: hashbrown::raw::RawTableInner::reserve_rehash_inner (src/raw/mod.rs:2670:18)", +"0x1045e4dc0: hashbrown::raw::RawTable::reserve_rehash (src/raw/mod.rs:991:24)", +"0x104114d38: hashbrown::raw::RawTable::reserve (src/raw/mod.rs:940:22)", +"0x104114d38: hashbrown::raw::RawTable::find_or_find_insert_slot (src/raw/mod.rs:1146:14)", +"0x104114d38: hashbrown::map::HashMap::find_or_find_insert_slot (hashbrown-0.15.4/src/map.rs:1812:20)", +"0x104114d38: hashbrown::map::HashMap::insert (hashbrown-0.15.4/src/map.rs:1792:20)", +"0x104114648: std::collections::hash::map::HashMap::insert (collections/hash/map.rs:1204:19)", +"0x104114648: ahash::hash_map::AHashMap::insert (ahash-0.8.12/src/hash_map.rs:186:16)", +"0x104114648: browserslist_data::caniuse::BROWSER_VERSION_ALIASES::{{closure}}::{{closure}}::{{closure}} (browserslist-data-0.1.4/src/caniuse.rs:52:41)", +"0x104114648: core::iter::adapters::filter_map::filter_map_fold::{{closure}} (iter/adapters/filter_map.rs:40:20)", +"0x104114648: as core::iter::traits::iterator::Iterator>::fold (slice/iter/macros.rs:255:27)", +"0x104114648: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/filter_map.rs:146:19)", +"0x104114648: browserslist_data::caniuse::BROWSER_VERSION_ALIASES::{{closure}}::{{closure}} (browserslist-data-0.1.4/src/caniuse.rs:48:18)", +"0x104114648: core::iter::adapters::filter_map::filter_map_fold::{{closure}} (iter/adapters/filter_map.rs:39:28)", +"0x104114648: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", +"0x104114648: as core::iter::traits::collect::Extend<(K,V)>>::extend (hashbrown-0.15.4/src/map.rs:4496:14)", +"0x104114648: as core::iter::traits::collect::Extend<(K,V)>>::extend (collections/hash/map.rs:2796:19)", +"0x104114648: as core::iter::traits::collect::FromIterator<(K,V)>>::from_iter (ahash-0.8.12/src/hash_map.rs:355:15)", +"0x104114648: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x104114648: browserslist_data::caniuse::BROWSER_VERSION_ALIASES::{{closure}} (browserslist-data-0.1.4/src/caniuse.rs:62:10)", +"0x104114648: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", +"0x10458f464: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x10458f464: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x10458f464: regex_syntax::hir::interval::IntervalSet::push (src/hir/interval.rs:86:21)", +"0x10458f464: regex_syntax::hir::ClassUnicode::push (src/hir/mod.rs:1078:18)", +"0x10458f464: ::visit_class_set_item_post (src/hir/translate.rs:503:25)", +"0x104546400: regex_syntax::ast::visitor::HeapVisitor::visit_class_post (src/ast/visitor.rs:377:25)", +"0x104546400: regex_syntax::ast::visitor::HeapVisitor::visit_class (src/ast/visitor.rs:326:18)", +"0x104546400: regex_syntax::ast::visitor::HeapVisitor::induct (src/ast/visitor.rs:268:22)", +"0x104546400: regex_syntax::ast::visitor::HeapVisitor::visit (src/ast/visitor.rs:216:35)", +"0x104546400: regex_syntax::ast::visitor::visit (src/ast/visitor.rs:119:24)", +"0x104546400: regex_syntax::hir::translate::Translator::translate (src/hir/translate.rs:174:9)", +"0x104546400: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3494:18)", +"0x104546400: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x10425853c: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", +"0x10425853c: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", +"0x10425853c: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", +"0x10425853c: alloc::vec::Vec::append_elements (src/vec/mod.rs:2732:14)", +"0x10425853c: as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter>>::spec_extend (src/vec/spec_extend.rs:61:23)", +"0x10425853c: alloc::vec::Vec::extend_from_slice (src/vec/mod.rs:3262:14)", +"0x10425853c: alloc::string::String::push_str (alloc/src/string.rs:1113:18)", +"0x10425853c: browserslist::resolve::{{closure}} (browserslist-rs-0.19.0/src/lib.rs:103:15)", +"0x10425853c: as core::iter::traits::iterator::Iterator>::fold::enumerate::{{closure}} (iter/adapters/enumerate.rs:140:27)", +"0x10425853c: core::iter::traits::iterator::Iterator::fold (iter/traits/iterator.rs:2602:21)", +"0x10425853c: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/enumerate.rs:146:19)", +"0x10425853c: browserslist::resolve (browserslist-rs-0.19.0/src/lib.rs:99:10)", +"0x10425853c: lightningcss::targets::Browsers::from_browserslist_with_config (lightningcss-1.0.0-alpha.68/src/targets.rs:64:25)", +"0x10425853c: lightningcss::targets::Browsers::from_browserslist (lightningcss-1.0.0-alpha.68/src/targets.rs:54:5)", +"0x10425853c: grimoire_css_lib::infrastructure::lightning_css_optimizer::LightningCssOptimizer::from_content (src/infrastructure/lightning_css_optimizer.rs:27:24)", +"0x10425853c: grimoire_css_lib::infrastructure::lightning_css_optimizer::LightningCssOptimizer::new (src/infrastructure/lightning_css_optimizer.rs:59:9)", +"0x10425853c: grimoire_css_lib::start (grimoire-css/src/lib.rs:73:25)", +"0x10425853c: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:164:11)", +"0x10457b114: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x10457b114: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x10457b114: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x1045802b4: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x1045802b4: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x1045802b4: regex_syntax::ast::visitor::HeapVisitor::visit (src/ast/visitor.rs:218:28)", +"0x1045802b4: regex_syntax::ast::visitor::visit (src/ast/visitor.rs:119:24)", +"0x1045802b4: regex_syntax::ast::parse::NestLimiter

::check (src/ast/parse.rs:2280:9)", +"0x104545b30: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:1024:32)", +"0x104545b30: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", +"0x104545b30: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", +"0x104545b30: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", +"0x104545b30: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x104273cf4: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:25:41)", +"0x104273cf4: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/meta/regex.rs:34:9)", +"0x104273cf4: as core::iter::traits::collect::FromIterator>::from_iter (src/fmt/rt.rs:3633:9)", +"0x104273cf4: core::iter::traits::iterator::Iterator::collect (src/util/pool.rs:2027:9)", +"0x104273cf4: indicatif::style::segment (src/util/search.rs:42:45)", +"0x104273cf4: indicatif::style::ProgressStyle::new (src/util/search.rs:115:30)", +"0x104257224: indicatif::style::ProgressStyle::default_spinner (indicatif-0.18.3/src/style.rs:78:9)", +"0x104257224: indicatif::progress_bar::ProgressBar::new_spinner (indicatif-0.18.3/src/progress_bar.rs:152:22)", +"0x104257224: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:156:14)", +"0x10454a1ec: regex_automata::hybrid::dfa::Builder::new (src/hybrid/dfa.rs:4003:23)", +"0x10454a1ec: regex_automata::meta::wrappers::HybridEngine::new (src/meta/wrappers.rs:598:26)", +"0x10454a1ec: regex_automata::meta::wrappers::Hybrid::new (src/meta/wrappers.rs:522:16)", +"0x10454a1ec: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:532:21)", +"0x10454a1ec: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", +"0x10454c638: regex_automata::meta::reverse_inner::extract (src/meta/reverse_inner.rs:116:1)", +"0x10454c638: regex_automata::meta::strategy::ReverseInner::new (src/meta/strategy.rs:1568:47)", +"0x10454c638: regex_automata::meta::strategy::new (src/meta/strategy.rs:177:18)", +"0x1045f5838: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", +"0x1045f5838: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", +"0x1045f5838: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", +"0x1045f5838: alloc::vec::Vec::append_elements (src/vec/mod.rs:2732:14)", +"0x1045f5838: as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter>>::spec_extend (src/vec/spec_extend.rs:61:23)", +"0x1045f5838: alloc::vec::Vec::extend_from_slice (src/vec/mod.rs:3262:14)", +"0x1045f5838: regex_automata::util::determinize::state::StateBuilderEmpty::into_matches (util/determinize/state.rs:200:16)", +"0x1045f5838: regex_automata::hybrid::dfa::Lazy::cache_start_one (src/hybrid/dfa.rs:2216:60)", +"0x1045f5838: regex_automata::hybrid::dfa::Lazy::cache_start_group (src/hybrid/dfa.rs:2194:14)", +"0x10428ca5c: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x10428ca5c: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x10428ca5c: lightningcss::declaration::parse_declaration (lightningcss-1.0.0-alpha.68/src/declaration.rs:534:18)", +"0x104509c04: as cssparser::rules_and_declarations::DeclarationParser>::parse_value (cssparser-0.33.0/src/rules_and_declarations.rs:0:0)", +"0x104509c04: as core::iter::traits::iterator::Iterator>::next::{{closure}} (cssparser-0.33.0/src/rules_and_declarations.rs:283:40)", +"0x104509c04: cssparser::parser::Parser::parse_entirely (cssparser-0.33.0/src/parser.rs:689:22)", +"0x104509c04: cssparser::parser::parse_until_before (cssparser-0.33.0/src/parser.rs:1059:35)", +"0x104509c04: cssparser::parser::parse_until_after (cssparser-0.33.0/src/parser.rs:1092:18)", +"0x104509c04: as core::iter::traits::iterator::Iterator>::next (cssparser-0.33.0/src/rules_and_declarations.rs:277:25)", +"0x104509c04: lightningcss::parser::NestedRuleParser::parse_nested (lightningcss-1.0.0-alpha.68/src/parser.rs:469:35)", +"0x10450c448: as cssparser::rules_and_declarations::QualifiedRuleParser>::parse_block (lightningcss-1.0.0-alpha.68/src/parser.rs:976:38)", +"0x1045210c8: as cssparser::rules_and_declarations::QualifiedRuleParser>::parse_block (lightningcss-1.0.0-alpha.68/src/parser.rs:435:5)", +"0x1045210c8: cssparser::rules_and_declarations::parse_qualified_rule::{{closure}} (cssparser-0.33.0/src/rules_and_declarations.rs:506:46)", +"0x1045210c8: cssparser::parser::Parser::parse_entirely (cssparser-0.33.0/src/parser.rs:689:22)", +"0x1045210c8: cssparser::parser::parse_nested_block (cssparser-0.33.0/src/parser.rs:1139:32)", +"0x1045210c8: cssparser::rules_and_declarations::parse_qualified_rule (cssparser-0.33.0/src/rules_and_declarations.rs:506:5)", +"0x1045210c8: as core::iter::traits::iterator::Iterator>::next (cssparser-0.33.0/src/rules_and_declarations.rs:396:30)", +"0x1045210c8: lightningcss::stylesheet::StyleSheet::parse_with (lightningcss-1.0.0-alpha.68/src/stylesheet.rs:190:45)", +"0x1045210c8: lightningcss::stylesheet::StyleSheet::parse (lightningcss-1.0.0-alpha.68/src/stylesheet.rs:124:5)", +"0x104173d58: ::optimize (src/infrastructure/lightning_css_optimizer.rs:82:30)", +"0x1045ebeac: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1045ebeac: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x1045ebeac: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x1045ebeac: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x1045ebeac: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1045ebeac: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x1045ebeac: grimoire_css_lib::buffer::MESSAGE_BUFFER::__init (grimoire-css/src/buffer.rs:10:64)", +"0x1045ebeac: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", +"0x1045ebeac: core::option::Option::unwrap_or_else (core/src/option.rs:1060:21)", +"0x1045ebeac: std::sys::thread_local::native::lazy::Storage::get_or_init_slow (thread_local/native/lazy.rs:78:42)", +"0x10425ae28: std::sys::thread_local::native::lazy::Storage::get_or_init (thread_local/native/lazy.rs:60:27)", +"0x10425ae28: grimoire_css_lib::buffer::MESSAGE_BUFFER::{{constant}}::{{closure}} (thread_local/native/mod.rs:94:29)", +"0x10425ae28: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", +"0x10425ae28: std::thread::local::LocalKey::try_with (src/thread/local.rs:314:37)", +"0x10425ae28: std::thread::local::LocalKey::with (src/thread/local.rs:279:20)", +"0x10425ae28: grimoire_css_lib::buffer::read_messages (grimoire-css/src/buffer.rs:20:20)", +"0x10425ae28: grimoire_css_lib::get_logged_messages (grimoire-css/src/lib.rs:92:5)", +"0x10425ae28: grimoire_css_lib::output_saved_messages (grimoire-css/src/lib.rs:215:20)", +"0x10425ae28: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:172:13)", +"0x10454a4b4: regex_automata::hybrid::dfa::Builder::new (src/hybrid/dfa.rs:4003:23)", +"0x10454a4b4: regex_automata::hybrid::dfa::DFA::builder (src/hybrid/dfa.rs:289:9)", +"0x10454a4b4: regex_automata::hybrid::regex::Builder::new (src/hybrid/regex.rs:774:24)", +"0x10454a4b4: regex_automata::meta::wrappers::HybridEngine::new (src/meta/wrappers.rs:615:17)", +"0x10454a4b4: regex_automata::meta::wrappers::Hybrid::new (src/meta/wrappers.rs:522:16)", +"0x10454a4b4: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:532:21)", +"0x10454a4b4: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", +"0x1042573c8: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1042573c8: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x1042573c8: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x1042573c8: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x1042573c8: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1042573c8: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x1042573c8: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x1042573c8: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x1042573c8: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", +"0x1042573c8: alloc::str::::to_owned (alloc/src/str.rs:211:62)", +"0x1042573c8: >::from (alloc/src/string.rs:3056:11)", +"0x1042573c8: <&str as alloc::string::SpecToString>::spec_to_string (alloc/src/string.rs:2977:21)", +"0x1042573c8: ::to_string (alloc/src/string.rs:2809:9)", +"0x1042573c8: indicatif::style::ProgressStyle::tick_strings::{{closure}} (indicatif-0.18.3/src/style.rs:150:48)", +"0x1042573c8: core::iter::adapters::map::map_fold::{{closure}} (iter/adapters/map.rs:88:28)", +"0x1042573c8: as core::iter::traits::iterator::Iterator>::fold (slice/iter/macros.rs:255:27)", +"0x1042573c8: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/map.rs:128:19)", +"0x1042573c8: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", +"0x1042573c8: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3774:26)", +"0x1042573c8: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", +"0x1042573c8: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:62:16)", +"0x1042573c8: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x1042573c8: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x1042573c8: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x1042573c8: indicatif::style::ProgressStyle::tick_strings (indicatif-0.18.3/src/style.rs:150:68)", +"0x1042573c8: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:157:51)", +"0x1045477f4: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x1045477f4: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x1045477f4: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", +"0x1045477f4: regex_automata::meta::regex::RegexInfo::new (src/meta/regex.rs:1944:19)", +"0x1045477f4: regex_automata::meta::regex::Builder::build_many_from_hir (src/meta/regex.rs:3609:20)", +"0x1045477f4: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3498:14)", +"0x1045477f4: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x10457eecc: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x10457eecc: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x10457eecc: regex_syntax::ast::parse::ParserI

::parse_uncounted_repetition (src/ast/parse.rs:1085:18)", +"0x1045453b4: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:1012:35)", +"0x1045453b4: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", +"0x1045453b4: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", +"0x1045453b4: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", +"0x1045453b4: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x10457dc04: regex_syntax::ast::parse::ParserI

::pop_group (src/ast/parse.rs:778:44)", +"0x104555e98: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x104555e98: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x104555e98: regex_syntax::hir::Repetition::with (src/hir/mod.rs:1849:18)", +"0x104555e98: regex_automata::meta::reverse_inner::flatten (src/meta/reverse_inner.rs:209:57)", +"0x104536124: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104536124: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104536124: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104536124: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104536124: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104536124: ::from_elem (src/vec/spec_from_elem.rs:15:21)", +"0x104536124: alloc::vec::from_elem (src/vec/mod.rs:3415:5)", +"0x104536124: regex_automata::nfa::thompson::map::Utf8SuffixMap::clear (nfa/thompson/map.rs:244:24)", +"0x104536124: regex_automata::nfa::thompson::compiler::Compiler::c_unicode_class_reverse_with_suffix (nfa/thompson/compiler.rs:1540:15)", +"0x104536124: regex_automata::nfa::thompson::compiler::Compiler::c_unicode_class (nfa/thompson/compiler.rs:1422:22)", +"0x104536124: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1026:50)", +"0x104213e24: std::path::Path::join (std/src/path.rs:2742:14)", +"0x104213e24: grimoire_css_lib::core::parser::parser_fs::ParserFs::collect_classes_single_output (core/parser/parser_fs.rs:62:41)", +"0x104213e24: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::build (core/css_builder/css_builder_fs.rs:93:22)", +"0x104213e24: grimoire_css_lib::commands::build::build (src/commands/build.rs:37:61)", +"0x104213e24: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", +"0x10452f350: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x10452f350: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x10452f350: regex_automata::dfa::onepass::InternalBuilder::add_dfa_state_for_nfa_state (src/dfa/onepass.rs:855:33)", +"0x104549950: regex_automata::dfa::onepass::InternalBuilder::add_start_state (src/dfa/onepass.rs:823:27)", +"0x104549950: regex_automata::dfa::onepass::InternalBuilder::build (src/dfa/onepass.rs:610:14)", +"0x104549950: regex_automata::dfa::onepass::Builder::build_from_nfa (src/dfa/onepass.rs:413:57)", +"0x104549950: regex_automata::meta::wrappers::OnePassEngine::new (src/meta/wrappers.rs:392:18)", +"0x104549950: regex_automata::meta::wrappers::OnePass::new (src/meta/wrappers.rs:331:17)", +"0x104549950: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:486:23)", +"0x104549950: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", +"0x1045d09f8: ::allocate (alloc/src/boxed.rs:250:14)", +"0x1045d09f8: alloc::raw_vec::RawVecInner::try_allocate_in (alloc/src/alloc.rs:476:47)", +"0x1045d09f8: alloc::raw_vec::RawVecInner::with_capacity_in (alloc/src/alloc.rs:422:15)", +"0x1045d09f8: alloc::raw_vec::RawVec::with_capacity_in (alloc/src/alloc.rs:190:20)", +"0x1045d09f8: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1045d09f8: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x1045d09f8: std::sys::args::unix::args (???:24:19)", +"0x1045d09f8: std::env::args_os (alloc/src/alloc.rs:865:21)", +"0x1045d09f8: std::env::args (alloc/src/alloc.rs:830:19)", +"0x1040b8f08: grimoire_css::main (grimoire-css/src/main.rs:28:29)", +"0x10454613c: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x10454613c: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x10454613c: regex_syntax::ast::visitor::HeapVisitor::visit (src/ast/visitor.rs:218:28)", +"0x10454613c: regex_syntax::ast::visitor::visit (src/ast/visitor.rs:119:24)", +"0x10454613c: regex_syntax::hir::translate::Translator::translate (src/hir/translate.rs:174:9)", +"0x10454613c: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3494:18)", +"0x10454613c: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x10457b354: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x10457b354: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x10457b354: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x10458effc: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x10458effc: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x10458effc: regex_syntax::hir::literal::PreferenceTrie::create_state (src/hir/literal.rs:2307:22)", +"0x10458effc: regex_syntax::hir::literal::PreferenceTrie::root (src/hir/literal.rs:2299:18)", +"0x10458effc: regex_syntax::hir::literal::PreferenceTrie::insert (src/hir/literal.rs:2269:29)", +"0x10458effc: regex_syntax::hir::literal::PreferenceTrie::minimize::{{closure}} (src/hir/literal.rs:2244:46)", +"0x10457ddec: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x10457ddec: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x10457ddec: regex_syntax::ast::parse::ParserI

::pop_group (src/ast/parse.rs:779:29)", +"0x10421be28: ::allocate (alloc/src/alloc.rs:250:14)", +"0x10421be28: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x10421be28: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x10421be28: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x10421be28: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x10421be28: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x10421be28: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x10421be28: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x10421be28: std::sys::os_str::bytes::Slice::to_owned (sys/os_str/bytes.rs:314:33)", +"0x10421be28: std::ffi::os_str::OsStr::to_os_string (src/ffi/os_str.rs:984:38)", +"0x10421be28: std::path::Path::to_path_buf (std/src/path.rs:2351:34)", +"0x10421be28: grimoire_css_lib::core::parser::parser_fs::ParserFs::collect_spells_from_path (core/parser/parser_fs.rs:247:36)", +"0x10457e468: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x10457e468: regex_syntax::ast::parse::ParserI

::push_or_add_alternation (src/ast/parse.rs:685:19)", +"0x10457e468: regex_syntax::ast::parse::ParserI

::push_alternate (src/ast/parse.rs:668:14)", +"0x1045993e4: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1045993e4: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x1045993e4: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x1045993e4: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x1045993e4: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1045993e4: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x1045993e4: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:54:33)", +"0x1045993e4: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x1045993e4: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x1045993e4: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x1045993e4: regex_syntax::unicode::hir_class (regex-syntax-0.8.8/src/unicode.rs:456:10)", +"0x1045993e4: regex_syntax::unicode::perl_space::imp (regex-syntax-0.8.8/src/unicode.rs:421:12)", +"0x1045993e4: regex_syntax::unicode::perl_space (regex-syntax-0.8.8/src/unicode.rs:424:5)", +"0x1045993e4: regex_syntax::hir::translate::TranslatorI::hir_perl_unicode_class (src/hir/translate.rs:1090:22)", +"0x104555cec: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104555cec: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104555cec: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104555cec: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104555cec: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104555cec: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x104555cec: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x104555cec: as core::clone::Clone>::clone (alloc/src/boxed.rs:1774:14)", +"0x104555cec: regex_automata::meta::reverse_inner::flatten (src/meta/reverse_inner.rs:206:65)", +"0x104103a20: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104103a20: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104103a20: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104103a20: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104103a20: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104103a20: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x104103a20: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:31:34)", +"0x104103a20: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x104103a20: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x104103a20: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x104103a20: browserslist::queries::last_n_browsers::last_n_browsers (src/queries/last_n_browsers.rs:17:10)", +"0x1045851dc: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x1045851dc: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x1045851dc: regex_syntax::ast::parse::ParserI

::parse_group (src/ast/parse.rs:1286:22)", +"0x10454dda4: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x10454dda4: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x10454dda4: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", +"0x10454dda4: regex_automata::meta::strategy::new (src/meta/strategy.rs:174:23)", +"0x10416fc10: ::allocate (alloc/src/alloc.rs:250:14)", +"0x10416fc10: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x10416fc10: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x10416fc10: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x10416fc10: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x10416fc10: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x10416fc10: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x10416fc10: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x10416fc10: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", +"0x10416fc10: alloc::str::::to_owned (alloc/src/str.rs:211:62)", +"0x10416fc10: >::from (alloc/src/string.rs:3056:11)", +"0x10416fc10: ::spec_to_string (alloc/src/string.rs:2977:21)", +"0x10416fc10: ::to_string (alloc/src/string.rs:2809:9)", +"0x10416fc10: grimoire_css_lib::core::spell::Spell::new (src/core/spell.rs:151:37)", +"0x10421410c: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::build (core/css_builder/css_builder_fs.rs:103:34)", +"0x10421410c: grimoire_css_lib::commands::build::build (src/commands/build.rs:37:61)", +"0x10421410c: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", +"0x104226588: core::iter::adapters::map::map_try_fold::{{closure}} (iter/adapters/map.rs:95:28)", +"0x104226588: core::iter::traits::iterator::Iterator::try_fold (iter/traits/iterator.rs:2426:21)", +"0x104226588: as core::iter::traits::iterator::Iterator>::try_fold (iter/adapters/map.rs:121:19)", +"0x104226588: as core::iter::traits::iterator::Iterator>::try_fold (iter/adapters/mod.rs:192:14)", +"0x104226588: as core::iter::traits::iterator::Iterator>::fold (src/iter/mod.rs:378:18)", +"0x104226588: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", +"0x104226588: >::extend (alloc/src/string.rs:2464:26)", +"0x104226588: >::from_iter (alloc/src/string.rs:2363:21)", +"0x104226588: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x104226588: as core::iter::traits::collect::FromIterator>>::from_iter::{{closure}} (core/src/result.rs:2054:51)", +"0x104226588: core::iter::adapters::try_process (iter/adapters/mod.rs:160:17)", +"0x104226588: as core::iter::traits::collect::FromIterator>>::from_iter (core/src/result.rs:2054:9)", +"0x104226588: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::escape_css_class_name (core/css_generator/css_generator_base.rs:301:14)", +"0x104226588: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::generate_css_class_name (core/css_generator/css_generator_base.rs:238:43)", +"0x10416c9e8: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_str (serde_json-1.0.147/src/de.rs:0:0)", +"0x10416c9e8: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_string (serde_json-1.0.147/src/de.rs:1555:14)", +"0x10416c9e8: serde_core::de::impls::::deserialize (src/de/impls.rs:693:22)", +"0x10415f750: as serde_core::de::Visitor>::visit_some (src/de/impls.rs:905:9)", +"0x10415f750: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_option (serde_json-1.0.147/src/de.rs:1681:26)", +"0x10415f750: serde_core::de::impls::>::deserialize (src/de/impls.rs:924:22)", +"0x10415f750: as serde_core::de::DeserializeSeed>::deserialize (src/de/mod.rs:825:9)", +"0x104160fa0: as serde_core::de::MapAccess>::next_value_seed (serde_json-1.0.147/src/de.rs:2031:14)", +"0x104160fa0: serde_core::de::MapAccess::next_value (src/de/mod.rs:1918:14)", +"0x104160fa0: ::deserialize::__Visitor as serde_core::de::Visitor>::visit_map (core/config/config_fs.rs:93:21)", +"0x104160fa0: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_struct (serde_json-1.0.147/src/de.rs:1849:39)", +"0x104160fa0: grimoire_css_lib::core::config::config_fs::_::::deserialize (core/config/config_fs.rs:93:21)", +"0x104160fa0: as serde_core::de::DeserializeSeed>::deserialize (src/de/mod.rs:825:9)", +"0x104160fa0: as serde_core::de::SeqAccess>::next_element_seed (serde_json-1.0.147/src/de.rs:1963:31)", +"0x104160fa0: serde_core::de::SeqAccess::next_element (src/de/mod.rs:1773:14)", +"0x104160fa0: >::deserialize::VecVisitor as serde_core::de::Visitor>::visit_seq (src/de/impls.rs:1164:50)", +"0x104160fa0: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_seq (serde_json-1.0.147/src/de.rs:1750:39)", +"0x104160fa0: serde_core::de::impls::>::deserialize (src/de/impls.rs:1175:22)", +"0x104159f30: as serde_core::de::MapAccess>::next_value_seed (serde_json-1.0.147/src/de.rs:2031:14)", +"0x104159f30: serde_core::de::MapAccess::next_value (src/de/mod.rs:1918:14)", +"0x104159f30: ::deserialize::__Visitor as serde_core::de::Visitor>::visit_map (core/config/config_fs.rs:69:21)", +"0x104159f30: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_struct (serde_json-1.0.147/src/de.rs:1849:39)", +"0x104159f30: grimoire_css_lib::core::config::config_fs::_::::deserialize (core/config/config_fs.rs:69:21)", +"0x104159f30: serde_json::de::from_trait (serde_json-1.0.147/src/de.rs:2501:22)", +"0x104159f30: serde_json::de::from_str (serde_json-1.0.147/src/de.rs:2701:5)", +"0x104159f30: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:174:41)", +"0x1042572e4: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1042572e4: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x1042572e4: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x1042572e4: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x1042572e4: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1042572e4: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x1042572e4: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x1042572e4: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x1042572e4: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", +"0x1042572e4: alloc::str::::to_owned (alloc/src/str.rs:211:62)", +"0x1042572e4: >::from (alloc/src/string.rs:3056:11)", +"0x1042572e4: <&str as alloc::string::SpecToString>::spec_to_string (alloc/src/string.rs:2977:21)", +"0x1042572e4: ::to_string (alloc/src/string.rs:2809:9)", +"0x1042572e4: indicatif::style::ProgressStyle::tick_strings::{{closure}} (indicatif-0.18.3/src/style.rs:150:48)", +"0x1042572e4: core::iter::adapters::map::map_fold::{{closure}} (iter/adapters/map.rs:88:28)", +"0x1042572e4: as core::iter::traits::iterator::Iterator>::fold (slice/iter/macros.rs:255:27)", +"0x1042572e4: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/map.rs:128:19)", +"0x1042572e4: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", +"0x1042572e4: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3774:26)", +"0x1042572e4: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", +"0x1042572e4: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:62:16)", +"0x1042572e4: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x1042572e4: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x1042572e4: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x1042572e4: indicatif::style::ProgressStyle::tick_strings (indicatif-0.18.3/src/style.rs:150:68)", +"0x1042572e4: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:157:51)", +"0x1045d281c: ::allocate (alloc/src/boxed.rs:250:14)", +"0x1045d281c: alloc::raw_vec::RawVecInner::try_allocate_in (alloc/src/alloc.rs:476:47)", +"0x1045d281c: alloc::raw_vec::RawVecInner::with_capacity_in (alloc/src/alloc.rs:422:15)", +"0x1045d281c: alloc::raw_vec::RawVec::with_capacity_in (alloc/src/alloc.rs:190:20)", +"0x1045d281c: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1045d281c: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x1045d281c: std::io::buffered::bufwriter::BufWriter::with_capacity (src/str/pattern.rs:122:33)", +"0x1045d281c: std::io::buffered::linewriter::LineWriter::with_capacity (src/iter/range.rs:110:29)", +"0x1045d281c: std::io::buffered::linewriter::LineWriter::new (src/iter/range.rs:90:9)", +"0x1045d281c: std::io::stdio::stdout::{{closure}} (zmij-0.1.9/src/traits.rs:719:61)", +"0x1045d281c: std::sync::once_lock::OnceLock::get_or_init::{{closure}} (src/ops/function.rs:313:50)", +"0x1045d281c: std::sync::once_lock::OnceLock::initialize::{{closure}} (src/ops/function.rs:526:19)", +"0x1045d281c: std::sync::poison::once::Once::call_once_force::{{closure}} (alloc/src/str.rs:214:40)", +"0x1045fb144: std::sync::poison::once::Once::call_once_force (sync/poison/once.rs:214:20)", +"0x1045fb144: std::sync::once_lock::OnceLock::initialize (src/ops/function.rs:525:19)", +"0x1045d3370: std::sync::once_lock::OnceLock::get_or_try_init (src/sync/once_lock.rs:401:14)", +"0x1045d3370: std::sync::once_lock::OnceLock::get_or_init (src/ops/function.rs:313:20)", +"0x1045d3370: std::io::stdio::stdout (zmij-0.1.9/src/traits.rs:719:14)", +"0x1045d3370: std::io::stdio::print_to (zmij-0.1.9/src/traits.rs:1164:21)", +"0x1045d3370: std::io::stdio::_print (zmij-0.1.9/src/traits.rs:1275:5)", +"0x104256ca8: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:131:5)", +"0x1045ed228: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x1045ed228: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x1045ed228: alloc::boxed::Box::pin (alloc/src/boxed.rs:322:9)", +"0x1045ed228: std::sys::sync::mutex::pthread::Mutex::get::{{closure}} (sync/mutex/pthread.rs:23:27)", +"0x1045ed228: std::sys::sync::once_box::OnceBox::initialize (sys/sync/once_box.rs:63:72)", +"0x1045d2e40: std::sys::sync::once_box::OnceBox::get_or_init (sys/sync/once_box.rs:51:26)", +"0x1045d2e40: std::sys::sync::mutex::pthread::Mutex::get (src/slice/mod.rs:22:18)", +"0x1045d2e40: std::sys::sync::mutex::pthread::Mutex::lock (src/slice/mod.rs:36:23)", +"0x1045d2e40: std::sync::reentrant_lock::ReentrantLock::lock (alloc/src/fmt.rs:294:28)", +"0x1045d2e40: std::io::stdio::Stderr::lock (zmij-0.1.9/src/traits.rs:1001:40)", +"0x1045d3244: <&std::io::stdio::Stdout as std::io::Write>::write_fmt (src/io/stdio.rs:834:14)", +"0x1045d3244: ::write_fmt (zmij-0.1.9/src/traits.rs:808:18)", +"0x1045d3244: std::io::stdio::print_to (zmij-0.1.9/src/traits.rs:1164:32)", +"0x1045d3244: std::io::stdio::_print (zmij-0.1.9/src/traits.rs:1275:5)", +"0x1045df008: alloc::raw_vec::finish_grow (src/raw_vec/mod.rs:0:0)", +"0x1045d117c: alloc::raw_vec::RawVecInner::grow_exact (src/raw_vec/mod.rs:686:19)", +"0x1045d117c: alloc::raw_vec::RawVecInner::try_reserve_exact (alloc/src/alloc.rs:607:18)", +"0x1045d117c: alloc::raw_vec::RawVec::try_reserve_exact (alloc/src/alloc.rs:381:20)", +"0x1045d117c: alloc::vec::Vec::try_reserve_exact (src/vec/mod.rs:1450:18)", +"0x1045d117c: alloc::string::String::try_reserve_exact (src/fmt/rt.rs:1341:18)", +"0x1045d117c: std::fs::read_to_string::inner (src/ptr/mod.rs:351:16)", +"0x1041595a4: std::fs::read_to_string (std/src/fs.rs:355:5)", +"0x1041595a4: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:173:23)", +"0x1045f1908: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x1045f1908: alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle (src/raw_vec/mod.rs:557:35)", +"0x1045f17b0: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", +"0x1045f17b0: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", +"0x1045f17b0: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", +"0x1045f17b0: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3770:18)", +"0x1045f17b0: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", +"0x1045f17b0: as core::iter::traits::collect::Extend>::extend (src/vec/mod.rs:3702:9)", +"0x1045f17b0: regex::builders::Builder::new (regex-1.12.2/src/builders.rs:66:16)", +"0x10452f664: ::allocate (alloc/src/alloc.rs:250:14)", +"0x10452f664: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x10452f664: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x10452f664: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x10452f664: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x10452f664: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x10452f664: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x10452f664: as core::clone::Clone>::clone (src/vec/mod.rs:3515:9)", +"0x10452f664: regex_automata::dfa::remapper::Remapper::remap (src/dfa/remapper.rs:133:31)", +"0x10452f664: regex_automata::dfa::onepass::InternalBuilder::shuffle_states (src/dfa/onepass.rs:755:18)", +"0x104568da4: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104568da4: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104568da4: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104568da4: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104568da4: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104568da4: ::from_elem (src/vec/spec_from_elem.rs:15:21)", +"0x104568da4: alloc::vec::from_elem (src/vec/mod.rs:3415:5)", +"0x104568da4: regex_automata::util::captures::Captures::all (src/util/captures.rs:217:50)", +"0x104568da4: ::create_cache (src/meta/strategy.rs:675:25)", +"0x104568da4: ::create_cache (src/meta/strategy.rs:1304:19)", +"0x10427845c: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x10427845c: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x10427845c: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x10417b078: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x10417b078: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x10417b078: lightningcss::rules::CssRuleList::minify (src/rules/mod.rs:783:19)", +"0x104593394: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x104593394: ::drop (src/hir/mod.rs:1931:25)", +"0x1045342f0: regex_automata::nfa::thompson::compiler::Compiler::patch (nfa/thompson/compiler.rs:1637:35)", +"0x1045342f0: regex_automata::nfa::thompson::compiler::Compiler::c_zero_or_one (nfa/thompson/compiler.rs:1340:14)", +"0x1045342f0: regex_automata::nfa::thompson::compiler::Compiler::c_repetition (nfa/thompson/compiler.rs:1171:34)", +"0x1045342f0: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1028:41)", +"0x104545ab8: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x104545ab8: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x104545ab8: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:1020:34)", +"0x104545ab8: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", +"0x104545ab8: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", +"0x104545ab8: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", +"0x104545ab8: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x10457dd3c: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x10457dd3c: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x10457dd3c: regex_syntax::ast::parse::ParserI

::pop_group (src/ast/parse.rs:785:27)", +"0x1045912b0: ::visit_post (src/hir/translate.rs:0:0)", +"0x104213f7c: std::path::Path::join (std/src/path.rs:2742:14)", +"0x104213f7c: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::build (core/css_builder/css_builder_fs.rs:94:71)", +"0x104213f7c: grimoire_css_lib::commands::build::build (src/commands/build.rs:37:61)", +"0x104213f7c: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", +"0x1042141bc: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", +"0x1042141bc: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", +"0x1042141bc: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", +"0x1042141bc: alloc::vec::Vec::append_elements (src/vec/mod.rs:2732:14)", +"0x1042141bc: as alloc::vec::spec_extend::SpecExtend>>::spec_extend (src/vec/spec_extend.rs:37:18)", +"0x1042141bc: as core::iter::traits::collect::Extend>::extend (src/vec/mod.rs:3702:9)", +"0x1042141bc: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::build (core/css_builder/css_builder_fs.rs:113:32)", +"0x1042141bc: grimoire_css_lib::commands::build::build (src/commands/build.rs:37:61)", +"0x1042141bc: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", +"0x10457e490: regex_syntax::ast::parse::ParserI

::push_or_add_alternation (src/ast/parse.rs:685:31)", +"0x10457e490: regex_syntax::ast::parse::ParserI

::push_alternate (src/ast/parse.rs:668:14)", +"0x10422691c: ::allocate (alloc/src/alloc.rs:250:14)", +"0x10422691c: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x10422691c: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x10422691c: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x10422691c: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x10422691c: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x10422691c: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x10422691c: as core::clone::Clone>::clone (src/vec/mod.rs:3515:9)", +"0x10422691c: ::clone (alloc/src/string.rs:2308:32)", +"0x10422691c: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::generate_css_class_name (core/css_generator/css_generator_base.rs:248:50)", +"0x1045f6538: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x1045f6538: alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle (src/raw_vec/mod.rs:557:35)", +"0x10458cd9c: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", +"0x10458cd9c: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", +"0x10458cd9c: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", +"0x10458cd9c: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3770:18)", +"0x10458cd9c: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", +"0x10458cd9c: as core::iter::traits::collect::Extend>::extend (src/vec/mod.rs:3702:9)", +"0x10458cd9c: regex_syntax::hir::literal::Seq::union (src/hir/literal.rs:1233:15)", +"0x10458cd9c: regex_syntax::hir::literal::Extractor::union (src/hir/literal.rs:613:14)", +"0x10458bd20: regex_syntax::hir::literal::Extractor::extract_alternation (src/hir/literal.rs:428:24)", +"0x10458bd20: regex_syntax::hir::literal::Extractor::extract (src/hir/literal.rs:196:22)", +"0x10454be5c: ::allocate (alloc/src/alloc.rs:250:14)", +"0x10454be5c: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x10454be5c: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x10454be5c: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x10454be5c: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x10454be5c: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x10454be5c: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:54:33)", +"0x10454be5c: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x10454be5c: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x10454be5c: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x10454be5c: regex_automata::meta::reverse_inner::top_concat (src/meta/reverse_inner.rs:183:65)", +"0x10454be5c: regex_automata::meta::reverse_inner::extract (src/meta/reverse_inner.rs:62:28)", +"0x10454be5c: regex_automata::meta::strategy::ReverseInner::new (src/meta/strategy.rs:1568:47)", +"0x10454be5c: regex_automata::meta::strategy::new (src/meta/strategy.rs:177:18)", +"0x104581a60: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x1045854f4: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x1045854f4: regex_syntax::ast::parse::ParserI

::parse_group (src/ast/parse.rs:1278:26)", +"0x104585fd8: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x104585fd8: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x104585fd8: regex_syntax::ast::Ast::empty (src/ast/mod.rs:501:20)", +"0x1045854e8: regex_syntax::ast::parse::ParserI

::parse_group (src/ast/parse.rs:1278:35)", +"0x10421ec7c: ::allocate (alloc/src/alloc.rs:250:14)", +"0x10421ec7c: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x10421ec7c: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x10421ec7c: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x10421ec7c: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x10421ec7c: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x10421ec7c: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:31:34)", +"0x10421ec7c: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x10421ec7c: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x10421ec7c: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x1042268a8: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::generate_effect (core/css_generator/css_generator_base.rs:330:30)", +"0x1042268a8: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::generate_css_class_name (core/css_generator/css_generator_base.rs:246:30)", +"0x1042263e0: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::generate_css_class_name (core/css_generator/css_generator_base.rs:237:54)", +"0x1045df10c: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x1045df10c: alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle (ahash-0.8.12/src/random_state.rs:557:35)", +"0x1040d7840: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", +"0x1040d7840: alloc::raw_vec::RawVec::reserve (ahash-0.8.12/src/random_state.rs:331:20)", +"0x1040d7840: alloc::vec::Vec::reserve (???:1339:18)", +"0x1040d7840: alloc::vec::Vec::append_elements (???:2732:14)", +"0x1040d7840: as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter>>::spec_extend (???:61:23)", +"0x1040d7840: alloc::vec::Vec::extend_from_slice (???:3262:14)", +"0x1040d7840: alloc::string::String::push_str (???:1113:18)", +"0x1040d7840: ::write_str (???:3279:14)", +"0x104120010: core::fmt::rt::Argument::fmt (src/fmt/rt.rs:173:76)", +"0x104120010: core::fmt::write (src/sync/atomic.rs:1468:25)", +"0x1040d772c: <&mut W as core::fmt::Write::write_fmt::SpecWriteFmt>::spec_write_fmt (src/fmt/mod.rs:233:21)", +"0x1040d772c: core::fmt::Write::write_fmt (src/num/uint_macros.rs:238:14)", +"0x1040d772c: alloc::fmt::format::format_inner (???:649:14)", +"0x1042281d0: alloc::fmt::format::{{closure}} (alloc/src/fmt.rs:654:34)", +"0x1042281d0: core::option::Option::map_or_else (core/src/option.rs:1271:21)", +"0x1042281d0: alloc::fmt::format (alloc/src/fmt.rs:654:19)", +"0x1042281d0: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::handle_generic_css (core/css_generator/css_generator_base.rs:511:24)", +"0x10457abfc: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x10457abfc: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x10457abfc: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x1045461a4: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x1045461a4: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x1045461a4: regex_syntax::ast::visitor::HeapVisitor::visit_class (src/ast/visitor.rs:322:34)", +"0x1045461a4: regex_syntax::ast::visitor::HeapVisitor::induct (src/ast/visitor.rs:268:22)", +"0x1045461a4: regex_syntax::ast::visitor::HeapVisitor::visit (src/ast/visitor.rs:216:35)", +"0x1045461a4: regex_syntax::ast::visitor::visit (src/ast/visitor.rs:119:24)", +"0x1045461a4: regex_syntax::hir::translate::Translator::translate (src/hir/translate.rs:174:9)", +"0x1045461a4: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3494:18)", +"0x1045461a4: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x10457acb8: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x10457acb8: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x10457acb8: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x10458f198: alloc::vec::Vec::insert_mut (src/vec/mod.rs:2096:22)", +"0x10458f198: alloc::vec::Vec::insert (src/vec/mod.rs:2049:22)", +"0x10458f198: regex_syntax::hir::literal::PreferenceTrie::insert (src/hir/literal.rs:2283:45)", +"0x10458f198: regex_syntax::hir::literal::PreferenceTrie::minimize::{{closure}} (src/hir/literal.rs:2244:46)", +"0x1045e5024: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x1045e5024: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x1045e5024: ahash::random_state::get_fixed_seeds::{{closure}} (ahash-0.8.12/src/random_state.rs:78:17)", +"0x1045e5024: once_cell::race::once_box::OnceBox::get_or_init::{{closure}} (once_cell-1.21.3/src/race.rs:437:62)", +"0x1045e5024: once_cell::race::once_box::OnceBox::init (once_cell-1.21.3/src/race.rs:463:23)", +"0x104114940: once_cell::race::once_box::OnceBox::get_or_try_init (once_cell-1.21.3/src/race.rs:456:30)", +"0x104114940: once_cell::race::once_box::OnceBox::get_or_init (once_cell-1.21.3/src/race.rs:437:24)", +"0x104114940: ahash::random_state::get_fixed_seeds (ahash-0.8.12/src/random_state.rs:75:19)", +"0x104114940: ahash::random_state::RandomState::new (ahash-0.8.12/src/random_state.rs:236:21)", +"0x104114940: as core::iter::traits::collect::FromIterator<(K,V)>>::from_iter (ahash-0.8.12/src/hash_map.rs:354:46)", +"0x104114940: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x104114940: browserslist_data::caniuse::BROWSER_VERSION_ALIASES::{{closure}} (browserslist-data-0.1.4/src/caniuse.rs:62:10)", +"0x104114940: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", +"0x10453ef4c: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x10453ef4c: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x10453ef4c: regex_automata::util::determinize::epsilon_closure (util/determinize/mod.rs:384:11)", +"0x1045f53c0: regex_automata::hybrid::dfa::Lazy::cache_start_one (src/hybrid/dfa.rs:2223:9)", +"0x1045f53c0: regex_automata::hybrid::dfa::Lazy::cache_start_group (src/hybrid/dfa.rs:2194:14)", +"0x104555f78: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104555f78: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104555f78: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104555f78: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104555f78: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104555f78: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x104555f78: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x104555f78: as core::clone::Clone>::clone (src/vec/mod.rs:3515:9)", +"0x104555f78: as core::clone::Clone>::clone (src/hir/interval.rs:33:10)", +"0x104555f78: ::clone (src/hir/mod.rs:1050:10)", +"0x104555f78: ::clone (src/hir/mod.rs:832:13)", +"0x104555f78: regex_automata::meta::reverse_inner::flatten (src/meta/reverse_inner.rs:207:47)", +"0x10458f660: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x10458f660: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x10458f660: regex_syntax::hir::interval::IntervalSet::push (src/hir/interval.rs:86:21)", +"0x10458f660: regex_syntax::hir::ClassUnicode::push (src/hir/mod.rs:1078:18)", +"0x10458f660: ::visit_class_set_item_post (src/hir/translate.rs:515:25)", +"0x104556a6c: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104556a6c: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104556a6c: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104556a6c: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104556a6c: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104556a6c: ::from_elem (src/vec/spec_from_elem.rs:15:21)", +"0x104556a6c: alloc::vec::from_elem (src/vec/mod.rs:3415:5)", +"0x104556a6c: regex_automata::util::captures::Captures::all (src/util/captures.rs:217:50)", +"0x104556a6c: ::create_cache (src/meta/strategy.rs:675:25)", +"0x104147738: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104147738: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104147738: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104147738: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104147738: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104147738: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x104147738: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x104147738: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x104147738: std::sys::os_str::bytes::Slice::to_owned (sys/os_str/bytes.rs:314:33)", +"0x104147738: std::ffi::os_str::OsStr::to_os_string (src/ffi/os_str.rs:984:38)", +"0x104147738: >::from (std/src/path.rs:1845:34)", +"0x104147738: glob::fill_todo (glob-0.3.3/src/lib.rs:924:17)", +"0x104165d08: as core::iter::traits::iterator::Iterator>::next (iter/adapters/flatten.rs:226:20)", +"0x104165d08: grimoire_css_lib::core::config::config_fs::ConfigFs::expand_glob_patterns (core/config/config_fs.rs:566:40)", +"0x1041051fc: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1041051fc: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x1041051fc: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x1041051fc: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x1041051fc: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1041051fc: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x1041051fc: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:31:34)", +"0x1041051fc: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x1041051fc: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x1041051fc: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x1041051fc: browserslist::queries::percentage::percentage (src/queries/percentage.rs:20:10)", +"0x10415f3a4: std::path::Path::join (std/src/path.rs:2742:14)", +"0x10415f3a4: grimoire_css_lib::core::filesystem::Filesystem::get_config_path (src/core/filesystem.rs:49:40)", +"0x10459ba10: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x10459ba10: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x10459ba10: regex_syntax::hir::Hir::concat (src/hir/mod.rs:488:25)", +"0x1045441a0: regex_automata::hybrid::dfa::DFA::start_state (src/hybrid/dfa.rs:1574:32)", +"0x1045441a0: regex_automata::hybrid::dfa::DFA::start_state_reverse (src/hybrid/dfa.rs:1636:14)", +"0x1045441a0: regex_automata::hybrid::search::init_rev (src/hybrid/search.rs:685:19)", +"0x1045441a0: regex_automata::hybrid::search::find_rev_imp (src/hybrid/search.rs:319:19)", +"0x1045441a0: regex_automata::hybrid::search::find_rev (src/hybrid/search.rs:307:9)", +"0x10455a8c0: regex_automata::hybrid::dfa::DFA::try_search_rev (src/hybrid/dfa.rs:796:24)", +"0x10455a8c0: regex_automata::hybrid::regex::Regex::try_search (src/hybrid/regex.rs:496:14)", +"0x1045b66ac: ::allocate (alloc/src/boxed.rs:250:14)", +"0x1045b66ac: alloc::raw_vec::RawVecInner::try_allocate_in (alloc/src/alloc.rs:476:47)", +"0x1045b66ac: alloc::raw_vec::RawVecInner::with_capacity_in (alloc/src/alloc.rs:422:15)", +"0x1045b66ac: alloc::raw_vec::RawVec::with_capacity_in (alloc/src/alloc.rs:190:20)", +"0x1045b66ac: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1045b66ac: ::to_vec_in::ConvertVec>::to_vec (src/num/uint_macros.rs:445:29)", +"0x1045b66ac: alloc::slice::::to_vec_in (src/num/uint_macros.rs:398:16)", +"0x1045b66ac: alloc::slice::::to_vec (src/num/uint_macros.rs:374:14)", +"0x1045b66ac: std::sys::os_str::bytes::Slice::to_owned (src/fmt/mod.rs:314:33)", +"0x1045b66ac: std::ffi::os_str::OsStr::to_os_string (src/io/error.rs:984:38)", +"0x1045b66ac: std::path::Path::to_path_buf (src/ptr/mut_ptr.rs:2351:34)", +"0x1045b66ac: std::sys::fs::unix::readdir (io/error/repr_bitpacked.rs:1844:25)", +"0x1045b66ac: std::sys::fs::read_dir (src/convert/num.rs:56:5)", +"0x104146928: std::fs::read_dir (std/src/fs.rs:3100:5)", +"0x104146928: glob::fill_todo (glob-0.3.3/src/lib.rs:938:24)", +"0x1045e3794: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x1045e3794: alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle (src/raw_vec/mod.rs:557:35)", +"0x1040f9828: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", +"0x1040f9828: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", +"0x1040f9828: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", +"0x1040f9828: alloc::vec::Vec::append_elements (src/vec/mod.rs:2732:14)", +"0x1040f9828: alloc::vec::Vec::append (src/vec/mod.rs:2721:18)", +"0x1040f9828: browserslist::resolve::{{closure}} (browserslist-rs-0.19.0/src/lib.rs:122:26)", +"0x1040f9828: as core::iter::traits::iterator::Iterator>::try_fold::enumerate::{{closure}} (iter/adapters/enumerate.rs:119:27)", +"0x1040f9828: as core::iter::traits::iterator::Iterator>::try_fold (src/vec/into_iter.rs:351:25)", +"0x1040f9828: as core::iter::traits::iterator::Iterator>::try_fold (iter/adapters/enumerate.rs:125:19)", +"0x1040f9828: browserslist::resolve (browserslist-rs-0.19.0/src/lib.rs:111:10)", +"0x1040f9828: browserslist::queries::defaults::defaults (src/queries/defaults.rs:5:5)", +"0x1040f9828: browserslist::queries::query (src/queries/mod.rs:218:32)", +"0x1045394f8: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1045394f8: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x1045394f8: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x1045394f8: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x1045394f8: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1045394f8: ::from_elem (src/vec/spec_from_elem.rs:15:21)", +"0x1045388a0: alloc::vec::from_elem (src/vec/mod.rs:3415:5)", +"0x1045388a0: regex_automata::nfa::thompson::map::Utf8BoundedMap::clear (nfa/thompson/map.rs:130:24)", +"0x1045388a0: regex_automata::nfa::thompson::compiler::Utf8State::clear (nfa/thompson/compiler.rs:1778:23)", +"0x1045388a0: regex_automata::nfa::thompson::compiler::Utf8Compiler::new (nfa/thompson/compiler.rs:1789:15)", +"0x104220360: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104220360: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104220360: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104220360: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104220360: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104220360: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x104220360: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x104220360: as core::clone::Clone>::clone (src/vec/mod.rs:3515:9)", +"0x104220360: ::clone (alloc/src/string.rs:2308:32)", +"0x104220360: grimoire_css_lib::core::parser::parser_base::Parser::collect_classes (core/parser/parser_base.rs:160:66)", +"0x104156d54: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x104156d54: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x104156d54: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x10421bef8: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x10421bef8: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x10421bef8: grimoire_css_lib::core::parser::parser_fs::ParserFs::collect_spells_from_path (core/parser/parser_fs.rs:247:25)", +"0x10459a5e8: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", +"0x10459a5e8: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", +"0x10459a5e8: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", +"0x10459a5e8: alloc::vec::Vec::append_elements (src/vec/mod.rs:2732:14)", +"0x10459a5e8: as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter>>::spec_extend (src/vec/spec_extend.rs:61:23)", +"0x10459a5e8: as core::iter::traits::collect::Extend<&T>>::extend (src/vec/mod.rs:3940:14)", +"0x10459a5e8: regex_syntax::hir::interval::IntervalSet::union (src/hir/interval.rs:138:21)", +"0x10459a5e8: regex_syntax::hir::ClassUnicode::union (src/hir/mod.rs:1138:18)", +"0x10459a5e8: regex_syntax::hir::class_chars (src/hir/mod.rs:2945:21)", +"0x10459a5e8: regex_syntax::hir::Hir::alternation (src/hir/mod.rs:616:28)", +"0x104145fac: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x104145fac: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x104145fac: glob::Pattern::new (glob-0.3.3/src/lib.rs:682:50)", +"0x104543990: regex_automata::hybrid::dfa::DFA::next_state (src/hybrid/dfa.rs:1228:32)", +"0x104543990: regex_automata::hybrid::search::find_rev_imp (src/hybrid/search.rs:404:22)", +"0x104543990: regex_automata::hybrid::search::find_rev (src/hybrid/search.rs:307:9)", +"0x10458ba2c: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x10458ba2c: regex_syntax::hir::literal::Seq::singleton (src/hir/literal.rs:783:30)", +"0x10458ba2c: regex_syntax::hir::literal::Extractor::extract_concat (src/hir/literal.rs:396:23)", +"0x10458ba2c: regex_syntax::hir::literal::Extractor::extract (src/hir/literal.rs:190:45)", +"0x1042579f4: std::sys::thread_local::native::eager::Storage::initialize (thread_local/native/eager.rs:47:13)", +"0x1042579f4: std::sys::thread_local::native::eager::Storage::get (thread_local/native/eager.rs:36:45)", +"0x1042579f4: std::thread::spawnhook::SPAWN_HOOKS::{{constant}}::{{closure}} (thread_local/native/mod.rs:67:29)", +"0x1042579f4: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", +"0x1042579f4: std::thread::local::LocalKey::try_with (src/thread/local.rs:314:37)", +"0x1042579f4: std::thread::spawnhook::run_spawn_hooks (src/thread/spawnhook.rs:116:36)", +"0x1042579f4: std::thread::Builder::spawn_unchecked_ (src/thread/mod.rs:507:13)", +"0x1042579f4: std::thread::Builder::spawn_unchecked (src/thread/mod.rs:467:37)", +"0x1042579f4: std::thread::Builder::spawn (src/thread/mod.rs:399:23)", +"0x1042579f4: std::thread::spawn (src/thread/mod.rs:729:20)", +"0x1042579f4: indicatif::progress_bar::Ticker::new (indicatif-0.18.3/src/progress_bar.rs:706:27)", +"0x1042579f4: indicatif::progress_bar::ProgressBar::stop_and_replace_ticker::{{closure}} (indicatif-0.18.3/src/progress_bar.rs:216:49)", +"0x1042579f4: core::option::Option::map (core/src/option.rs:1158:29)", +"0x1042579f4: indicatif::progress_bar::ProgressBar::stop_and_replace_ticker (indicatif-0.18.3/src/progress_bar.rs:216:34)", +"0x1042579f4: indicatif::progress_bar::ProgressBar::enable_steady_tick (indicatif-0.18.3/src/progress_bar.rs:202:14)", +"0x1042579f4: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:158:8)", +"0x1040d7704: ::allocate (???:250:14)", +"0x1040d7704: alloc::raw_vec::RawVecInner::try_allocate_in (ahash-0.8.12/src/random_state.rs:476:47)", +"0x1040d7704: alloc::raw_vec::RawVecInner::with_capacity_in (ahash-0.8.12/src/random_state.rs:422:15)", +"0x1040d7704: alloc::raw_vec::RawVec::with_capacity_in (ahash-0.8.12/src/random_state.rs:190:20)", +"0x1040d7704: alloc::vec::Vec::with_capacity_in (???:929:20)", +"0x1040d7704: alloc::vec::Vec::with_capacity (???:500:9)", +"0x1040d7704: alloc::string::String::with_capacity (???:488:23)", +"0x1040d7704: alloc::fmt::format::format_inner (???:647:26)", +"0x10422684c: alloc::fmt::format::{{closure}} (alloc/src/fmt.rs:654:34)", +"0x10422684c: core::option::Option::map_or_else (core/src/option.rs:1271:21)", +"0x10422684c: alloc::fmt::format (alloc/src/fmt.rs:654:19)", +"0x10422684c: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::generate_css_class_name (core/css_generator/css_generator_base.rs:243:34)", +"0x104114868: std::collections::hash::map::HashMap::insert (collections/hash/map.rs:1204:19)", +"0x104114868: ahash::hash_map::AHashMap::insert (ahash-0.8.12/src/hash_map.rs:186:16)", +"0x104114868: browserslist_data::caniuse::BROWSER_VERSION_ALIASES::{{closure}} (browserslist-data-0.1.4/src/caniuse.rs:65:25)", +"0x104114868: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", +"0x104590fe8: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x104590fe8: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x104590fe8: regex_syntax::hir::Properties::empty (src/hir/mod.rs:2429:20)", +"0x104590fe8: regex_syntax::hir::Hir::empty (src/hir/mod.rs:259:21)", +"0x104590fe8: ::visit_post (src/hir/translate.rs:383:42)", +"0x10458c090: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x10458c090: regex_syntax::hir::literal::Seq::singleton (src/hir/literal.rs:783:30)", +"0x10458c090: regex_syntax::hir::literal::Extractor::extract_repetition (src/hir/literal.rs:484:31)", +"0x10458c090: regex_syntax::hir::literal::Extractor::extract (src/hir/literal.rs:186:41)", +"0x10454535c: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x10454535c: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x10454535c: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:997:33)", +"0x10454535c: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", +"0x10454535c: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", +"0x10454535c: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", +"0x10454535c: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x104214048: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104214048: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104214048: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104214048: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104214048: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104214048: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x104214048: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x104214048: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x104214048: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", +"0x104214048: alloc::str::::to_owned (alloc/src/str.rs:211:62)", +"0x104214048: as alloc::string::SpecToString>::spec_to_string (alloc/src/string.rs:3004:18)", +"0x104214048: ::to_string (alloc/src/string.rs:2809:9)", +"0x104214048: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::build (core/css_builder/css_builder_fs.rs:101:53)", +"0x104214048: grimoire_css_lib::commands::build::build (src/commands/build.rs:37:61)", +"0x104214048: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", +"0x104257c38: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x104257c38: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x104257c38: std::thread::Builder::spawn_unchecked_ (src/thread/mod.rs:578:20)", +"0x104257c38: std::thread::Builder::spawn_unchecked (src/thread/mod.rs:467:37)", +"0x104257c38: std::thread::Builder::spawn (src/thread/mod.rs:399:23)", +"0x104257c38: std::thread::spawn (src/thread/mod.rs:729:20)", +"0x104257c38: indicatif::progress_bar::Ticker::new (indicatif-0.18.3/src/progress_bar.rs:706:27)", +"0x104257c38: indicatif::progress_bar::ProgressBar::stop_and_replace_ticker::{{closure}} (indicatif-0.18.3/src/progress_bar.rs:216:49)", +"0x104257c38: core::option::Option::map (core/src/option.rs:1158:29)", +"0x104257c38: indicatif::progress_bar::ProgressBar::stop_and_replace_ticker (indicatif-0.18.3/src/progress_bar.rs:216:34)", +"0x104257c38: indicatif::progress_bar::ProgressBar::enable_steady_tick (indicatif-0.18.3/src/progress_bar.rs:202:14)", +"0x104257c38: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:158:8)", +"0x1045768dc: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1045768dc: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x1045768dc: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x1045768dc: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x1045768dc: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1045768dc: ::from_elem (src/vec/spec_from_elem.rs:15:21)", +"0x1045768dc: alloc::vec::from_elem (src/vec/mod.rs:3415:5)", +"0x1045768dc: regex_automata::util::captures::Captures::all (src/util/captures.rs:217:50)", +"0x1045768dc: regex_automata::meta::regex::Regex::create_captures (src/meta/regex.rs:1571:9)", +"0x10421f390: regex_automata::meta::regex::Regex::captures_iter (src/meta/regex.rs:656:25)", +"0x10421f390: regex::regex::string::Regex::captures_iter (src/regex/string.rs:424:50)", +"0x10421f390: grimoire_css_lib::core::parser::parser_base::Parser::collect_classes (core/parser/parser_base.rs:124:26)", +"0x1042583a8: std::fs::read_to_string (std/src/fs.rs:355:5)", +"0x1042583a8: grimoire_css_lib::infrastructure::lightning_css_optimizer::LightningCssOptimizer::new (src/infrastructure/lightning_css_optimizer.rs:56:23)", +"0x1042583a8: grimoire_css_lib::start (grimoire-css/src/lib.rs:73:25)", +"0x1042583a8: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:164:11)", +"0x104555d20: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x104555d20: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x104555d20: regex_syntax::hir::Properties::literal (src/hir/mod.rs:2448:20)", +"0x104555d20: regex_syntax::hir::Hir::literal (src/hir/mod.rs:349:21)", +"0x104555d20: regex_automata::meta::reverse_inner::flatten (src/meta/reverse_inner.rs:206:50)", +"0x10442a9d8: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x10442a9d8: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x10442a9d8: lightningcss::properties::background::BackgroundHandler::flush (src/properties/background.rs:937:14)", +"0x104429ef0: ::finalize (src/properties/background.rs:922:10)", +"0x104429ef0: lightningcss::declaration::DeclarationHandler::finalize (lightningcss-1.0.0-alpha.68/src/declaration.rs:702:21)", +"0x104213ff0: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104213ff0: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104213ff0: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104213ff0: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104213ff0: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104213ff0: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x104213ff0: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x104213ff0: as core::clone::Clone>::clone (src/vec/mod.rs:3515:9)", +"0x104213ff0: ::clone (sys/os_str/bytes.rs:92:33)", +"0x104213ff0: ::clone (src/ffi/os_str.rs:700:38)", +"0x104213ff0: ::clone (std/src/path.rs:1758:37)", +"0x104213ff0: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::build (core/css_builder/css_builder_fs.rs:100:40)", +"0x104213ff0: grimoire_css_lib::commands::build::build (src/commands/build.rs:37:61)", +"0x104213ff0: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", +"0x1045802ec: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x1045802ec: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x1045802ec: regex_syntax::ast::visitor::HeapVisitor::visit_class (src/ast/visitor.rs:322:34)", +"0x1045802ec: regex_syntax::ast::visitor::HeapVisitor::induct (src/ast/visitor.rs:268:22)", +"0x1045802ec: regex_syntax::ast::visitor::HeapVisitor::visit (src/ast/visitor.rs:216:35)", +"0x1045802ec: regex_syntax::ast::visitor::visit (src/ast/visitor.rs:119:24)", +"0x1045802ec: regex_syntax::ast::parse::NestLimiter

::check (src/ast/parse.rs:2280:9)", +"0x1042571b8: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x1042571b8: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x1042571b8: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", +"0x1042571b8: indicatif::progress_bar::ProgressBar::with_draw_target (indicatif-0.18.3/src/progress_bar.rs:76:21)", +"0x1042571b8: indicatif::progress_bar::ProgressBar::new_spinner (indicatif-0.18.3/src/progress_bar.rs:151:18)", +"0x1042571b8: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:156:14)", +"0x10415cc18: as core::iter::traits::iterator::Iterator>::next (iter/adapters/flatten.rs:226:20)", +"0x10415cc18: grimoire_css_lib::core::config::config_fs::ConfigFs::load_external_scrolls (core/config/config_fs.rs:616:30)", +"0x10415cc18: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:181:26)", +"0x104555da0: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104555da0: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104555da0: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104555da0: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104555da0: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104555da0: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x104555da0: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:54:33)", +"0x104555da0: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x104555da0: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x104555da0: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x104555da0: regex_automata::meta::reverse_inner::flatten (src/meta/reverse_inner.rs:217:55)", +"0x10415ca84: std::path::Path::join (std/src/path.rs:2742:14)", +"0x10415ca84: grimoire_css_lib::core::config::config_fs::ConfigFs::load_external_scrolls (core/config/config_fs.rs:610:14)", +"0x10415ca84: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:181:26)", +"0x1045390d0: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x1045390d0: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x1045390d0: regex_automata::nfa::thompson::compiler::Utf8Node::set_last_transition (nfa/thompson/compiler.rs:1892:24)", +"0x1045390d0: regex_automata::nfa::thompson::compiler::Utf8Compiler::top_last_freeze (nfa/thompson/compiler.rs:1885:37)", +"0x1045390d0: regex_automata::nfa::thompson::compiler::Utf8Compiler::compile_from (nfa/thompson/compiler.rs:1824:14)", +"0x10457d3e0: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x10457d3e0: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x10457d3e0: regex_syntax::ast::parse::ParserI

::push_group (src/ast/parse.rs:712:29)", +"0x104258018: std::path::Path::join (std/src/path.rs:2742:14)", +"0x104258018: grimoire_css_lib::infrastructure::lightning_css_optimizer::LightningCssOptimizer::new (src/infrastructure/lightning_css_optimizer.rs:41:52)", +"0x104258018: grimoire_css_lib::start (grimoire-css/src/lib.rs:73:25)", +"0x104258018: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:164:11)", +"0x104273d74: ::allocate (core/css_builder/css_builder_base.rs:250:14)", +"0x104273d74: alloc::raw_vec::RawVecInner::try_allocate_in (src/num/uint_macros.rs:476:47)", +"0x104273d74: alloc::raw_vec::RawVecInner::with_capacity_in (src/num/uint_macros.rs:422:15)", +"0x104273d74: alloc::raw_vec::RawVec::with_capacity_in (src/num/uint_macros.rs:190:20)", +"0x104273d74: alloc::vec::Vec::with_capacity_in (src/fmt/rt.rs:929:20)", +"0x104273d74: alloc::vec::Vec::with_capacity (src/fmt/rt.rs:500:9)", +"0x104273d74: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (core/src/option.rs:31:34)", +"0x104273d74: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/meta/regex.rs:34:9)", +"0x104273d74: as core::iter::traits::collect::FromIterator>::from_iter (src/fmt/rt.rs:3633:9)", +"0x104273d74: core::iter::traits::iterator::Iterator::collect (src/util/pool.rs:2027:9)", +"0x104273d74: indicatif::style::segment (src/util/search.rs:42:45)", +"0x104273d74: indicatif::style::ProgressStyle::new (src/util/search.rs:115:30)", +"0x1045224dc: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x1045224dc: lightningcss::stylesheet::StyleSheet::parse_with (lightningcss-1.0.0-alpha.68/src/stylesheet.rs:206:16)", +"0x1045224dc: lightningcss::stylesheet::StyleSheet::parse (lightningcss-1.0.0-alpha.68/src/stylesheet.rs:124:5)", +"0x1045eb470: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1045eb470: hashbrown::raw::alloc::inner::do_alloc (src/raw/alloc.rs:19:21)", +"0x1045eb470: hashbrown::raw::RawTableInner::new_uninitialized (src/raw/mod.rs:1476:38)", +"0x1045eb470: hashbrown::raw::RawTableInner::fallible_with_capacity (src/raw/mod.rs:1515:21)", +"0x1045eb470: hashbrown::raw::RawTableInner::prepare_resize (src/raw/mod.rs:2584:13)", +"0x1045eb470: hashbrown::raw::RawTableInner::resize_inner (src/raw/mod.rs:2782:34)", +"0x1045eb470: hashbrown::raw::RawTableInner::reserve_rehash_inner (src/raw/mod.rs:2670:18)", +"0x1045eb470: hashbrown::raw::RawTable::reserve_rehash (src/raw/mod.rs:991:24)", +"0x104165640: hashbrown::raw::RawTable::reserve (src/raw/mod.rs:940:22)", +"0x104165640: hashbrown::raw::RawTable::find_or_find_insert_slot (src/raw/mod.rs:1146:14)", +"0x104165640: hashbrown::map::HashMap::find_or_find_insert_slot (hashbrown-0.15.4/src/map.rs:1812:20)", +"0x104165640: hashbrown::map::HashMap::insert (hashbrown-0.15.4/src/map.rs:1792:20)", +"0x10422038c: hashbrown::set::HashSet::insert (hashbrown-0.15.4/src/set.rs:1093:18)", +"0x10422038c: std::collections::hash::set::HashSet::insert (collections/hash/set.rs:917:19)", +"0x10422038c: grimoire_css_lib::core::parser::parser_base::Parser::collect_classes (core/parser/parser_base.rs:160:46)", +"0x10458d2cc: ::allocate (alloc/src/alloc.rs:250:14)", +"0x10458d2cc: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x10458d2cc: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x10458d2cc: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x10458d2cc: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x10458d2cc: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x10458d2cc: regex_syntax::hir::literal::Seq::cross_reverse (src/hir/literal.rs:1122:49)", +"0x10458d2cc: regex_syntax::hir::literal::Extractor::cross (src/hir/literal.rs:565:18)", +"0x1045fb2c4: alloc::alloc::exchange_malloc (alloc/src/boxed.rs:351:18)", +"0x1045fb2c4: alloc::boxed::Box::new (src/de/mod.rs:261:16)", +"0x1045fb2c4: alloc::boxed::Box::pin (src/de/mod.rs:322:9)", +"0x1045fb2c4: std::sys::sync::condvar::pthread::Condvar::get::{{closure}} (???:24:28)", +"0x1045fb2c4: std::sys::sync::once_box::OnceBox::initialize (src/ops/range.rs:63:72)", +"0x1042689a4: std::sys::sync::once_box::OnceBox::get_or_init (sys/sync/once_box.rs:51:26)", +"0x1042689a4: std::sys::sync::condvar::pthread::Condvar::get (src/ops/index_range.rs:23:19)", +"0x1042689a4: std::sys::sync::condvar::pthread::Condvar::wait_timeout (src/ops/index_range.rs:84:39)", +"0x1042689a4: std::sync::poison::condvar::Condvar::wait_timeout (core/src/result.rs:391:38)", +"0x1042689a4: std::sync::poison::condvar::Condvar::wait_timeout_while (core/src/result.rs:468:26)", +"0x1042689a4: indicatif::progress_bar::TickerControl::run (core/css_generator/color_functions.rs:744:18)", +"0x1042689a4: indicatif::progress_bar::Ticker::new::{{closure}} (core/css_generator/color_functions.rs:706:57)", +"0x1042689a4: std::sys::backtrace::__rust_begin_short_backtrace (sort/shared/pivot.rs:158:18)", +"0x104275fbc: std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}} (src/thread/mod.rs:559:17)", +"0x104275fbc: as core::ops::function::FnOnce<()>>::call_once (sys/thread_local/mod.rs:272:9)", +"0x104275fbc: std::panicking::catch_unwind::do_call (alloc/src/slice.rs:589:40)", +"0x104275fbc: std::panicking::catch_unwind (alloc/src/slice.rs:552:19)", +"0x104275fbc: std::panic::catch_unwind (src/fmt/mod.rs:359:14)", +"0x104275fbc: std::thread::Builder::spawn_unchecked_::{{closure}} (src/raw_vec/mod.rs:557:30)", +"0x104275fbc: core::ops::function::FnOnce::call_once{{vtable.shim}} (src/raw/mod.rs:253:5)", +"0x104146bd4: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104146bd4: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104146bd4: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104146bd4: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104146bd4: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104146bd4: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x104146bd4: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:31:34)", +"0x104146bd4: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x104146bd4: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x104146bd4: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x104146bd4: as core::iter::traits::collect::FromIterator>>::from_iter::{{closure}} (core/src/result.rs:2054:51)", +"0x104146bd4: core::iter::adapters::try_process (iter/adapters/mod.rs:160:17)", +"0x104146bd4: as core::iter::traits::collect::FromIterator>>::from_iter (core/src/result.rs:2054:9)", +"0x104146bd4: glob::fill_todo::{{closure}} (glob-0.3.3/src/lib.rs:949:18)", +"0x104146bd4: core::result::Result::and_then (core/src/result.rs:1415:22)", +"0x104146bd4: glob::fill_todo (glob-0.3.3/src/lib.rs:938:43)", +"0x104545484: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:1000:35)", +"0x104545484: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", +"0x104545484: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", +"0x104545484: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", +"0x104545484: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x10454b9e0: regex_automata::util::prefilter::suffixes (util/prefilter/mod.rs:695:18)", +"0x10454b9e0: regex_automata::meta::strategy::ReverseSuffix::new (src/meta/strategy.rs:1170:24)", +"0x10454b9e0: regex_automata::meta::strategy::new (src/meta/strategy.rs:170:18)", +"0x10457b054: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x10457b054: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x10457b054: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x1045859fc: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x1045859fc: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x1045859fc: regex_syntax::ast::Flags::add_item (src/ast/mod.rs:1551:20)", +"0x1045859fc: regex_syntax::ast::parse::ParserI

::parse_flags (src/ast/parse.rs:1383:40)", +"0x104585390: regex_syntax::ast::parse::ParserI

::parse_group (src/ast/parse.rs:1257:30)", +"0x104257258: indicatif::style::ProgressStyle::default_spinner (indicatif-0.18.3/src/style.rs:78:19)", +"0x104257258: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:157:18)", +"0x1040b9018: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1040b9018: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x1040b9018: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x1040b9018: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x1040b9018: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1040b9018: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x1040b9018: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:31:34)", +"0x1040b9018: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x1040b9018: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x1040b9018: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x1040b9018: grimoire_css::main (grimoire-css/src/main.rs:28:41)", +"0x104224204: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104224204: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104224204: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104224204: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104224204: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104224204: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x104224204: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x104224204: as core::clone::Clone>::clone (src/vec/mod.rs:3515:9)", +"0x104224204: ::clone (alloc/src/string.rs:2308:32)", +"0x104224204: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::adapt_targets (core/css_generator/css_generator_base.rs:354:52)", +"0x104224204: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::generate_css (core/css_generator/css_generator_base.rs:176:22)", +"0x104160f60: as serde_core::de::MapAccess>::next_value_seed (serde_json-1.0.147/src/de.rs:2031:14)", +"0x104160f60: serde_core::de::MapAccess::next_value (src/de/mod.rs:1918:14)", +"0x104160f60: ::deserialize::__Visitor as serde_core::de::Visitor>::visit_map (core/config/config_fs.rs:93:21)", +"0x104160f60: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_struct (serde_json-1.0.147/src/de.rs:1849:39)", +"0x104160f60: grimoire_css_lib::core::config::config_fs::_::::deserialize (core/config/config_fs.rs:93:21)", +"0x104160f60: as serde_core::de::DeserializeSeed>::deserialize (src/de/mod.rs:825:9)", +"0x104160f60: as serde_core::de::SeqAccess>::next_element_seed (serde_json-1.0.147/src/de.rs:1963:31)", +"0x104160f60: serde_core::de::SeqAccess::next_element (src/de/mod.rs:1773:14)", +"0x104160f60: >::deserialize::VecVisitor as serde_core::de::Visitor>::visit_seq (src/de/impls.rs:1164:50)", +"0x104160f60: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_seq (serde_json-1.0.147/src/de.rs:1750:39)", +"0x104160f60: serde_core::de::impls::>::deserialize (src/de/impls.rs:1175:22)", +"0x104274dc0: alloc::vec::Vec::extend_desugared (src/vec/mod.rs:3741:44)", +"0x104274dc0: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/mod.rs:19:14)", +"0x104274dc0: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (core/src/option.rs:42:9)", +"0x104274dc0: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/meta/regex.rs:34:9)", +"0x104274dc0: as core::iter::traits::collect::FromIterator>::from_iter (src/fmt/rt.rs:3633:9)", +"0x104274dc0: core::iter::traits::iterator::Iterator::collect (src/util/pool.rs:2027:9)", +"0x104274dc0: indicatif::style::ProgressStyle::new (src/util/search.rs:121:18)", +"0x10411ab44: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x10411ab44: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x10411ab44: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", +"0x10411ab44: console::term::Term::with_inner (console-0.16.2/src/term.rs:143:20)", +"0x10411aa78: console::term::Term::stdout (console-0.16.2/src/term.rs:156:9)", +"0x10411aa78: console::utils::STDOUT_COLORS::{{closure}} (console-0.16.2/src/utils.rs:26:58)", +"0x10411aa78: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", +"0x1042684d8: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", +"0x1042684d8: once_cell::sync::Lazy::force::{{closure}} (once_cell-1.21.3/src/lib.rs:1310:28)", +"0x1042684d8: once_cell::sync::OnceCell::get_or_init::{{closure}} (once_cell-1.21.3/src/lib.rs:1120:57)", +"0x1042684d8: once_cell::imp::OnceCell::initialize::{{closure}} (once_cell-1.21.3/src/imp_std.rs:72:23)", +"0x1045ed444: once_cell::imp::OnceCell::initialize (once_cell-1.21.3/src/imp_std.rs:68:9)", +"0x10425bfb4: once_cell::sync::OnceCell::get_or_try_init (once_cell-1.21.3/src/lib.rs:1161:20)", +"0x10425bfb4: once_cell::sync::OnceCell::get_or_init (once_cell-1.21.3/src/lib.rs:1120:24)", +"0x10425bfb4: once_cell::sync::Lazy::force (once_cell-1.21.3/src/lib.rs:1309:23)", +"0x10425bfb4: as core::ops::deref::Deref>::deref (once_cell-1.21.3/src/lib.rs:1376:13)", +"0x10425bfb4: console::utils::colors_enabled (console-0.16.2/src/utils.rs:43:5)", +"0x10425bfb4: as core::fmt::Display>::fmt::{{closure}} (console-0.16.2/src/utils.rs:779:34)", +"0x10425bfb4: core::option::Option::unwrap_or_else (core/src/option.rs:1060:21)", +"0x10425bfb4: as core::fmt::Display>::fmt (console-0.16.2/src/utils.rs:777:22)", +"0x1045d3274: std::io::default_write_fmt (src/io/mod.rs:639:11)", +"0x1045d3274: std::io::Write::write_fmt (???:1954:13)", +"0x1045d3274: <&std::io::stdio::Stdout as std::io::Write>::write_fmt (zmij-0.1.9/src/traits.rs:834:21)", +"0x1045d3274: ::write_fmt (zmij-0.1.9/src/traits.rs:808:18)", +"0x1045d3274: std::io::stdio::print_to (zmij-0.1.9/src/traits.rs:1164:32)", +"0x1045d3274: std::io::stdio::_print (zmij-0.1.9/src/traits.rs:1275:5)", +"0x104256d1c: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:133:5)", +"0x1045b66f4: alloc::alloc::exchange_malloc (alloc/src/boxed.rs:351:18)", +"0x1045b66f4: alloc::boxed::Box::new (src/de/mod.rs:261:16)", +"0x1045b66f4: alloc::sync::Arc::new (src/str/iter.rs:409:25)", +"0x1045b66f4: std::sys::fs::unix::ReadDir::new (io/error/repr_bitpacked.rs:263:23)", +"0x1045b66f4: std::sys::fs::unix::readdir (io/error/repr_bitpacked.rs:1846:12)", +"0x1045b66f4: std::sys::fs::read_dir (src/convert/num.rs:56:5)", +"0x10428e740: ::allocate (alloc/src/alloc.rs:250:14)", +"0x10428e740: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x10428e740: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x10428e740: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x10428e740: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x10428e740: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x10428e740: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x10428e740: as core::clone::Clone>::clone (src/vec/mod.rs:3515:9)", +"0x10428e740: ::clone (alloc/src/string.rs:2308:32)", +"0x10428e740: >::from (src/values/string.rs:62:39)", +"0x10428e740: >::into (src/convert/mod.rs:784:9)", +"0x10428e740: >::from (src/values/string.rs:47:10)", +"0x10450d3d4: >::into (src/convert/mod.rs:784:9)", +"0x10450d3d4: >::from (src/values/string.rs:363:14)", +"0x10450d3d4: parcel_selectors::parser::parse_one_simple_selector (index.crates.io-1949cf8c6b5b557f/parcel_selectors-0.28.2/parser.rs:3002:42)", +"0x10450d3d4: parcel_selectors::parser::parse_compound_selector (index.crates.io-1949cf8c6b5b557f/parcel_selectors-0.28.2/parser.rs:2720:24)", +"0x10450d3d4: parcel_selectors::parser::parse_selector (index.crates.io-1949cf8c6b5b557f/parcel_selectors-0.28.2/parser.rs:2136:17)", +"0x10450b748: parcel_selectors::parser::SelectorList::parse_with_state::{{closure}} (index.crates.io-1949cf8c6b5b557f/parcel_selectors-0.28.2/parser.rs:456:22)", +"0x10450b748: cssparser::parser::Parser::parse_entirely (cssparser-0.33.0/src/parser.rs:689:22)", +"0x10450b748: cssparser::parser::parse_until_before (cssparser-0.33.0/src/parser.rs:1059:35)", +"0x10450b748: cssparser::parser::Parser::parse_until_before (cssparser-0.33.0/src/parser.rs:797:9)", +"0x10450b748: parcel_selectors::parser::SelectorList::parse_with_state (index.crates.io-1949cf8c6b5b557f/parcel_selectors-0.28.2/parser.rs:454:28)", +"0x10452015c: parcel_selectors::parser::SelectorList::parse (index.crates.io-1949cf8c6b5b557f/parcel_selectors-0.28.2/parser.rs:431:5)", +"0x10452015c: as cssparser::rules_and_declarations::QualifiedRuleParser>::parse_prelude (lightningcss-1.0.0-alpha.68/src/parser.rs:960:7)", +"0x10452015c: as cssparser::rules_and_declarations::QualifiedRuleParser>::parse_prelude (lightningcss-1.0.0-alpha.68/src/parser.rs:425:5)", +"0x10452015c: cssparser::rules_and_declarations::parse_qualified_rule::{{closure}} (cssparser-0.33.0/src/rules_and_declarations.rs:502:71)", +"0x10452015c: cssparser::parser::Parser::parse_entirely (cssparser-0.33.0/src/parser.rs:689:22)", +"0x10452015c: cssparser::parser::parse_until_before (cssparser-0.33.0/src/parser.rs:1059:35)", +"0x10452015c: cssparser::parser::Parser::parse_until_before (cssparser-0.33.0/src/parser.rs:797:9)", +"0x10452015c: cssparser::rules_and_declarations::parse_qualified_rule (cssparser-0.33.0/src/rules_and_declarations.rs:502:25)", +"0x10452015c: as core::iter::traits::iterator::Iterator>::next (cssparser-0.33.0/src/rules_and_declarations.rs:396:30)", +"0x10452015c: lightningcss::stylesheet::StyleSheet::parse_with (lightningcss-1.0.0-alpha.68/src/stylesheet.rs:190:45)", +"0x10452015c: lightningcss::stylesheet::StyleSheet::parse (lightningcss-1.0.0-alpha.68/src/stylesheet.rs:124:5)", +"0x104160f18: as serde_core::de::DeserializeSeed>::deserialize (src/de/mod.rs:825:9)", +"0x104160f18: as serde_core::de::MapAccess>::next_value_seed (serde_json-1.0.147/src/de.rs:2031:14)", +"0x104160f18: serde_core::de::MapAccess::next_value (src/de/mod.rs:1918:14)", +"0x104160f18: ::deserialize::__Visitor as serde_core::de::Visitor>::visit_map (core/config/config_fs.rs:93:21)", +"0x104160f18: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_struct (serde_json-1.0.147/src/de.rs:1849:39)", +"0x104160f18: grimoire_css_lib::core::config::config_fs::_::::deserialize (core/config/config_fs.rs:93:21)", +"0x104160f18: as serde_core::de::SeqAccess>::next_element_seed (serde_json-1.0.147/src/de.rs:1963:31)", +"0x104160f18: serde_core::de::SeqAccess::next_element (src/de/mod.rs:1773:14)", +"0x104160f18: >::deserialize::VecVisitor as serde_core::de::Visitor>::visit_seq (src/de/impls.rs:1164:50)", +"0x104160f18: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_seq (serde_json-1.0.147/src/de.rs:1750:39)", +"0x104160f18: serde_core::de::impls::>::deserialize (src/de/impls.rs:1175:22)", +"0x1042572a8: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1042572a8: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x1042572a8: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x1042572a8: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x1042572a8: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1042572a8: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x1042572a8: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x1042572a8: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x1042572a8: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", +"0x1042572a8: alloc::str::::to_owned (alloc/src/str.rs:211:62)", +"0x1042572a8: >::from (alloc/src/string.rs:3056:11)", +"0x1042572a8: <&str as alloc::string::SpecToString>::spec_to_string (alloc/src/string.rs:2977:21)", +"0x1042572a8: ::to_string (alloc/src/string.rs:2809:9)", +"0x1042572a8: indicatif::style::ProgressStyle::tick_strings::{{closure}} (indicatif-0.18.3/src/style.rs:150:48)", +"0x1042572a8: core::iter::adapters::map::map_fold::{{closure}} (iter/adapters/map.rs:88:28)", +"0x1042572a8: as core::iter::traits::iterator::Iterator>::fold (slice/iter/macros.rs:255:27)", +"0x1042572a8: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/map.rs:128:19)", +"0x1042572a8: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", +"0x1042572a8: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3774:26)", +"0x1042572a8: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", +"0x1042572a8: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:62:16)", +"0x1042572a8: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x1042572a8: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x1042572a8: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x1042572a8: indicatif::style::ProgressStyle::tick_strings (indicatif-0.18.3/src/style.rs:150:68)", +"0x1042572a8: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:157:51)", +"0x104177e08: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104177e08: hashbrown::raw::alloc::inner::do_alloc (src/raw/alloc.rs:19:21)", +"0x104177e08: hashbrown::raw::RawTableInner::new_uninitialized (src/raw/mod.rs:1476:38)", +"0x104177e08: hashbrown::raw::RawTableInner::fallible_with_capacity (src/raw/mod.rs:1515:21)", +"0x104177e08: hashbrown::raw::RawTableInner::with_capacity (src/raw/mod.rs:1542:15)", +"0x104177e08: hashbrown::raw::RawTable::with_capacity_in (src/raw/mod.rs:680:20)", +"0x104177e08: hashbrown::raw::RawTable::with_capacity (src/raw/mod.rs:630:9)", +"0x104177e08: hashbrown::map::HashMap::with_capacity_and_hasher (hashbrown-0.15.4/src/map.rs:502:20)", +"0x104177e08: std::collections::hash::map::HashMap::with_capacity_and_hasher (collections/hash/map.rs:344:25)", +"0x104177e08: lightningcss::rules::CssRuleList::minify (src/rules/mod.rs:545:7)", +"0x104522550: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x104522550: lightningcss::stylesheet::StyleSheet::parse_with (lightningcss-1.0.0-alpha.68/src/stylesheet.rs:207:24)", +"0x104522550: lightningcss::stylesheet::StyleSheet::parse (lightningcss-1.0.0-alpha.68/src/stylesheet.rs:124:5)", +"0x104166d40: std::path::Path::join (std/src/path.rs:2742:14)", +"0x104166d40: grimoire_css_lib::core::filesystem::Filesystem::get_or_create_grimoire_path (src/core/filesystem.rs:76:33)", +"0x10415d5a0: grimoire_css_lib::core::config::config_fs::ConfigFs::load_external_variables (core/config/config_fs.rs:713:26)", +"0x10415d5a0: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:184:28)", +"0x10415d5d8: std::path::Path::join (std/src/path.rs:2742:14)", +"0x10415d5d8: grimoire_css_lib::core::config::config_fs::ConfigFs::load_external_variables (core/config/config_fs.rs:713:80)", +"0x10415d5d8: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:184:28)", +"0x104268b68: std::sys::sync::once_box::OnceBox::get_or_init (sys/sync/once_box.rs:51:26)", +"0x104268b68: std::sys::sync::mutex::pthread::Mutex::get (core/src/cmp.rs:22:18)", +"0x104268b68: std::sys::sync::mutex::pthread::Mutex::lock (core/src/cmp.rs:36:23)", +"0x104268b68: std::sync::poison::mutex::Mutex::lock (src/raw_vec/mod.rs:437:24)", +"0x104268b68: indicatif::progress_bar::TickerControl::run (core/css_generator/color_functions.rs:744:53)", +"0x104268b68: indicatif::progress_bar::Ticker::new::{{closure}} (core/css_generator/color_functions.rs:706:57)", +"0x104268b68: std::sys::backtrace::__rust_begin_short_backtrace (sort/shared/pivot.rs:158:18)", +"0x104165d58: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104165d58: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104165d58: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104165d58: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104165d58: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104165d58: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x104165d58: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x104165d58: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x104165d58: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", +"0x104165d58: alloc::str::::to_owned (alloc/src/str.rs:211:62)", +"0x104165d58: >::from (alloc/src/string.rs:3056:11)", +"0x104165d58: ::spec_to_string (alloc/src/string.rs:2977:21)", +"0x104165d58: ::to_string (alloc/src/string.rs:2809:9)", +"0x104165d58: grimoire_css_lib::core::config::config_fs::ConfigFs::expand_glob_patterns (core/config/config_fs.rs:568:49)", +"0x1045d0a48: ::allocate (alloc/src/boxed.rs:250:14)", +"0x1045d0a48: alloc::raw_vec::RawVecInner::try_allocate_in (alloc/src/alloc.rs:476:47)", +"0x1045d0a48: alloc::raw_vec::RawVecInner::with_capacity_in (alloc/src/alloc.rs:422:15)", +"0x1045d0a48: alloc::raw_vec::RawVec::with_capacity_in (alloc/src/alloc.rs:190:20)", +"0x1045d0a48: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1045d0a48: ::to_vec_in::ConvertVec>::to_vec (src/num/uint_macros.rs:445:29)", +"0x1045d0a48: alloc::slice::::to_vec_in (src/num/uint_macros.rs:398:16)", +"0x1045d0a48: alloc::slice::::to_vec (src/num/uint_macros.rs:374:14)", +"0x1045d0a48: std::sys::args::unix::args (???:58:56)", +"0x1045d0a48: std::env::args_os (alloc/src/alloc.rs:865:21)", +"0x1045d0a48: std::env::args (alloc/src/alloc.rs:830:19)", +"0x1040f8cdc: browserslist::resolve (browserslist-rs-0.19.0/src/lib.rs:107:24)", +"0x1040f8cdc: browserslist::queries::dead::dead (src/queries/dead.rs:5:5)", +"0x1040f8cdc: browserslist::queries::query (src/queries/mod.rs:219:28)", +"0x1041145ec: std::collections::hash::map::HashMap::insert (collections/hash/map.rs:1204:19)", +"0x1041145ec: ahash::hash_map::AHashMap::insert (ahash-0.8.12/src/hash_map.rs:186:16)", +"0x1041145ec: browserslist_data::caniuse::BROWSER_VERSION_ALIASES::{{closure}}::{{closure}}::{{closure}} (browserslist-data-0.1.4/src/caniuse.rs:51:41)", +"0x1041145ec: core::iter::adapters::filter_map::filter_map_fold::{{closure}} (iter/adapters/filter_map.rs:40:20)", +"0x1041145ec: as core::iter::traits::iterator::Iterator>::fold (slice/iter/macros.rs:255:27)", +"0x1041145ec: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/filter_map.rs:146:19)", +"0x1041145ec: browserslist_data::caniuse::BROWSER_VERSION_ALIASES::{{closure}}::{{closure}} (browserslist-data-0.1.4/src/caniuse.rs:48:18)", +"0x1041145ec: core::iter::adapters::filter_map::filter_map_fold::{{closure}} (iter/adapters/filter_map.rs:39:28)", +"0x1041145ec: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", +"0x1041145ec: as core::iter::traits::collect::Extend<(K,V)>>::extend (hashbrown-0.15.4/src/map.rs:4496:14)", +"0x1041145ec: as core::iter::traits::collect::Extend<(K,V)>>::extend (collections/hash/map.rs:2796:19)", +"0x1041145ec: as core::iter::traits::collect::FromIterator<(K,V)>>::from_iter (ahash-0.8.12/src/hash_map.rs:355:15)", +"0x1041145ec: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x1041145ec: browserslist_data::caniuse::BROWSER_VERSION_ALIASES::{{closure}} (browserslist-data-0.1.4/src/caniuse.rs:62:10)", +"0x1041145ec: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", +"0x104146c38: alloc::vec::Vec::extend_desugared (src/vec/mod.rs:3741:44)", +"0x104146c38: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:19:14)", +"0x104146c38: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:42:9)", +"0x104146c38: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x104146c38: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x104146c38: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x104146c38: as core::iter::traits::collect::FromIterator>>::from_iter::{{closure}} (core/src/result.rs:2054:51)", +"0x104146c38: core::iter::adapters::try_process (iter/adapters/mod.rs:160:17)", +"0x104146c38: as core::iter::traits::collect::FromIterator>>::from_iter (core/src/result.rs:2054:9)", +"0x104146c38: glob::fill_todo::{{closure}} (glob-0.3.3/src/lib.rs:949:18)", +"0x104146c38: core::result::Result::and_then (core/src/result.rs:1415:22)", +"0x104146c38: glob::fill_todo (glob-0.3.3/src/lib.rs:938:43)", +"0x104257e60: console::term::Term::buffered_stdout (console-0.16.2/src/term.rs:177:9)", +"0x104257e60: indicatif::draw_target::ProgressDrawTarget::stdout_with_hz (indicatif-0.18.3/src/draw_target.rs:49:20)", +"0x104257e60: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:159:24)", +"0x10415f37c: grimoire_css_lib::core::filesystem::Filesystem::get_config_path (src/core/filesystem.rs:48:28)", +"0x1045afe64: ::allocate (alloc/src/boxed.rs:250:14)", +"0x1045afe64: alloc::raw_vec::RawVecInner::try_allocate_in (alloc/src/alloc.rs:476:47)", +"0x1045afe64: alloc::raw_vec::RawVecInner::with_capacity_in (alloc/src/alloc.rs:422:15)", +"0x1045afe64: alloc::raw_vec::RawVec::with_capacity_in (alloc/src/alloc.rs:190:20)", +"0x1045afe64: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1045afe64: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x1045afe64: std::sys::pal::unix::os::getcwd (core/src/result.rs:160:19)", +"0x1045afe64: std::env::current_dir (alloc/src/alloc.rs:54:5)", +"0x104257fd4: grimoire_css_lib::start (grimoire-css/src/lib.rs:72:23)", +"0x104257fd4: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:164:11)", +"0x1040f8f64: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x1040f8f64: browserslist::queries::firefox_esr::firefox_esr (src/queries/firefox_esr.rs:4:8)", +"0x1040f8f64: browserslist::queries::query (src/queries/mod.rs:212:34)", +"0x1045919dc: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x1045919dc: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x1045919dc: ::visit_post (src/hir/translate.rs:459:27)", +"0x104224e00: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", +"0x104224e00: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", +"0x104224e00: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", +"0x104224e00: alloc::vec::Vec::append_elements (src/vec/mod.rs:2732:14)", +"0x104224e00: as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter>>::spec_extend (src/vec/spec_extend.rs:61:23)", +"0x104224e00: alloc::vec::Vec::extend_from_slice (src/vec/mod.rs:3262:14)", +"0x104224e00: alloc::string::String::push_str (alloc/src/string.rs:1113:18)", +"0x104224e00: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::adapt_targets (core/css_generator/css_generator_base.rs:363:16)", +"0x104224e00: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::generate_css (core/css_generator/css_generator_base.rs:176:22)", +"0x10421fb3c: ::allocate (alloc/src/alloc.rs:250:14)", +"0x10421fb3c: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x10421fb3c: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x10421fb3c: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x10421fb3c: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x10421fb3c: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x10421fb3c: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x10421fb3c: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x10421fb3c: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", +"0x10421fb3c: alloc::str::::to_owned (alloc/src/str.rs:211:62)", +"0x10421fb3c: >::from (alloc/src/string.rs:3056:11)", +"0x10421fb3c: ::spec_to_string (alloc/src/string.rs:2977:21)", +"0x10421fb3c: ::to_string (alloc/src/string.rs:2809:9)", +"0x10421fb3c: grimoire_css_lib::core::parser::parser_base::Parser::collect_classes (core/parser/parser_base.rs:153:53)", +"0x1040f19ec: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x1040f19ec: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x1040f19ec: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x1042203ac: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x1042203ac: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x1042203ac: grimoire_css_lib::core::parser::parser_base::Parser::collect_classes (core/parser/parser_base.rs:161:41)", +"0x1041747cc: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1041747cc: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x1041747cc: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x1041747cc: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x1041747cc: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1041747cc: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x1041747cc: alloc::string::String::with_capacity (alloc/src/string.rs:488:23)", +"0x1041747cc: lightningcss::stylesheet::StyleSheet::to_css (lightningcss-1.0.0-alpha.68/src/stylesheet.rs:274:20)", +"0x1041747cc: ::optimize (src/infrastructure/lightning_css_optimizer.rs:98:14)", +"0x1040f84c8: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", +"0x1040f84c8: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", +"0x1040f84c8: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", +"0x1040f84c8: alloc::vec::Vec::append_elements (src/vec/mod.rs:2732:14)", +"0x1040f84c8: as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter>>::spec_extend (src/vec/spec_extend.rs:61:23)", +"0x1040f84c8: alloc::vec::Vec::extend_from_slice (src/vec/mod.rs:3262:14)", +"0x1040f84c8: alloc::string::String::push_str (alloc/src/string.rs:1113:18)", +"0x1040f84c8: browserslist::resolve::{{closure}} (browserslist-rs-0.19.0/src/lib.rs:103:15)", +"0x1040f84c8: as core::iter::traits::iterator::Iterator>::fold::enumerate::{{closure}} (iter/adapters/enumerate.rs:140:27)", +"0x1040f84c8: core::ops::try_trait::NeverShortCircuit::wrap_mut_2::{{closure}} (src/ops/try_trait.rs:401:39)", +"0x1040f84c8: core::array::iter::iter_inner::PolymorphicIter<[core::mem::maybe_uninit::MaybeUninit]>::try_fold::{{closure}} (array/iter/iter_inner.rs:220:13)", +"0x1040f84c8: ::try_fold (src/ops/index_range.rs:169:21)", +"0x1040f84c8: core::array::iter::iter_inner::PolymorphicIter<[core::mem::maybe_uninit::MaybeUninit]>::try_fold (array/iter/iter_inner.rs:215:20)", +"0x1040f84c8: core::array::iter::iter_inner::PolymorphicIter<[core::mem::maybe_uninit::MaybeUninit]>::fold (array/iter/iter_inner.rs:202:14)", +"0x1040f84c8: as core::iter::traits::iterator::Iterator>::fold (src/array/iter.rs:253:27)", +"0x1040f84c8: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/enumerate.rs:146:19)", +"0x1040f84c8: browserslist::resolve (browserslist-rs-0.19.0/src/lib.rs:99:10)", +"0x1040f84c8: browserslist::queries::defaults::defaults (src/queries/defaults.rs:5:5)", +"0x1040f84c8: browserslist::queries::query (src/queries/mod.rs:218:32)", +"0x104256f60: console::term::Term::buffered_stderr (console-0.16.2/src/term.rs:187:9)", +"0x104256f60: indicatif::draw_target::ProgressDrawTarget::stderr (indicatif-0.18.3/src/draw_target.rs:42:20)", +"0x104256f60: indicatif::progress_bar::ProgressBar::new_spinner (indicatif-0.18.3/src/progress_bar.rs:151:47)", +"0x104256f60: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:156:14)", +"0x10421bb98: std::fs::read_to_string (std/src/fs.rs:355:5)", +"0x10421bb98: grimoire_css_lib::core::parser::parser_fs::ParserFs::collect_spells_from_path (core/parser/parser_fs.rs:230:32)", +"0x1040f8618: browserslist::resolve (browserslist-rs-0.19.0/src/lib.rs:107:24)", +"0x1040f8618: browserslist::queries::defaults::defaults (src/queries/defaults.rs:5:5)", +"0x1040f8618: browserslist::queries::query (src/queries/mod.rs:218:32)", +"0x1042140a0: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x1042140a0: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x1042140a0: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", +"0x1042140a0: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::build (core/css_builder/css_builder_fs.rs:99:34)", +"0x1042140a0: grimoire_css_lib::commands::build::build (src/commands/build.rs:37:61)", +"0x1042140a0: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", +"0x1042759b8: std::sys::sync::once_box::OnceBox::get_or_init (sys/sync/once_box.rs:51:26)", +"0x1042759b8: std::sys::sync::mutex::pthread::Mutex::get (core/src/cmp.rs:22:18)", +"0x1042759b8: std::sys::sync::mutex::pthread::Mutex::lock (core/src/cmp.rs:36:23)", +"0x1042759b8: std::sync::poison::mutex::Mutex::lock (src/raw_vec/mod.rs:437:24)", +"0x1042759b8: indicatif::progress_bar::ProgressBar::state (core/css_generator/color_functions.rs:643:20)", +"0x1042759b8: indicatif::progress_bar::ProgressBar::set_style (core/css_generator/color_functions.rs:160:30)", +"0x104257230: indicatif::progress_bar::ProgressBar::new_spinner (indicatif-0.18.3/src/progress_bar.rs:152:12)", +"0x104257230: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:156:14)", +"0x10410704c: ::allocate (alloc/src/alloc.rs:250:14)", +"0x10410704c: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x10410704c: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x10410704c: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x10410704c: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x10410704c: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x10410704c: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:31:34)", +"0x10410704c: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x10410704c: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x10410704c: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x10410704c: browserslist::queries::browser_unbounded_range::browser_unbounded_range (src/queries/browser_unbounded_range.rs:32:10)", +"0x104257610: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x104257610: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x104257610: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", +"0x104257610: indicatif::progress_bar::Ticker::new (indicatif-0.18.3/src/progress_bar.rs:700:24)", +"0x104257610: indicatif::progress_bar::ProgressBar::stop_and_replace_ticker::{{closure}} (indicatif-0.18.3/src/progress_bar.rs:216:49)", +"0x104257610: core::option::Option::map (core/src/option.rs:1158:29)", +"0x104257610: indicatif::progress_bar::ProgressBar::stop_and_replace_ticker (indicatif-0.18.3/src/progress_bar.rs:216:34)", +"0x104257610: indicatif::progress_bar::ProgressBar::enable_steady_tick (indicatif-0.18.3/src/progress_bar.rs:202:14)", +"0x104257610: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:158:8)", +"0x104545fbc: ::visit_pre (src/hir/translate.rs:351:22)", +"0x104545fbc: regex_syntax::ast::visitor::HeapVisitor::visit (src/ast/visitor.rs:215:21)", +"0x104545fbc: regex_syntax::ast::visitor::visit (src/ast/visitor.rs:119:24)", +"0x104545fbc: regex_syntax::hir::translate::Translator::translate (src/hir/translate.rs:174:9)", +"0x104545fbc: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3494:18)", +"0x104545fbc: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x1045995d8: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1045995d8: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x1045995d8: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x1045995d8: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x1045995d8: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1045995d8: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x1045995d8: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:54:33)", +"0x1045995d8: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x1045995d8: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x1045995d8: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x1045995d8: regex_syntax::unicode::hir_class (regex-syntax-0.8.8/src/unicode.rs:456:10)", +"0x1045995d8: regex_syntax::unicode::perl_word::imp (regex-syntax-0.8.8/src/unicode.rs:397:12)", +"0x1045995d8: regex_syntax::unicode::perl_word (regex-syntax-0.8.8/src/unicode.rs:400:5)", +"0x1045995d8: regex_syntax::hir::translate::TranslatorI::hir_perl_unicode_class (src/hir/translate.rs:1091:21)", +"0x104256fc0: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x104256fc0: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x104256fc0: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", +"0x104256fc0: indicatif::progress_bar::ProgressBar::with_draw_target (indicatif-0.18.3/src/progress_bar.rs:72:19)", +"0x104256fc0: indicatif::progress_bar::ProgressBar::new_spinner (indicatif-0.18.3/src/progress_bar.rs:151:18)", +"0x104256fc0: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:156:14)", +"0x104221140: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104221140: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104221140: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104221140: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104221140: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104221140: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x104221140: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x104221140: as core::clone::Clone>::clone (src/vec/mod.rs:3515:9)", +"0x104221140: ::clone (src/util/captures.rs:172:5)", +"0x104221140: ::next (src/meta/regex.rs:2175:23)", +"0x104221140: ::next (src/regex/string.rs:2248:17)", +"0x10428e76c: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x10428e76c: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x10428e76c: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", +"0x10428e76c: >::from (src/values/string.rs:94:25)", +"0x10428e76c: >::from (src/values/string.rs:62:7)", +"0x10428e76c: >::into (src/convert/mod.rs:784:9)", +"0x10428e76c: >::from (src/values/string.rs:47:10)", +"0x1045e50f4: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x1045e50f4: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x1045e50f4: ahash::random_state::get_src::{{closure}} (ahash-0.8.12/src/random_state.rs:192:44)", +"0x1045e50f4: once_cell::race::once_box::OnceBox::get_or_init::{{closure}} (once_cell-1.21.3/src/race.rs:437:62)", +"0x1045e50f4: once_cell::race::once_box::OnceBox::init (once_cell-1.21.3/src/race.rs:463:23)", +"0x10416af74: as serde_core::de::DeserializeSeed>::deserialize (src/de/mod.rs:825:9)", +"0x10416af74: as serde_core::de::SeqAccess>::next_element_seed (serde_json-1.0.147/src/de.rs:1963:31)", +"0x10416af74: serde_core::de::SeqAccess::next_element (src/de/mod.rs:1773:14)", +"0x10416af74: >::deserialize::VecVisitor as serde_core::de::Visitor>::visit_seq (src/de/impls.rs:1164:50)", +"0x10416af74: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_seq (serde_json-1.0.147/src/de.rs:1750:39)", +"0x10416af74: serde_core::de::impls::>::deserialize (src/de/impls.rs:1175:22)", +"0x104161030: as serde_core::de::DeserializeSeed>::deserialize (src/de/mod.rs:825:9)", +"0x104161030: as serde_core::de::MapAccess>::next_value_seed (serde_json-1.0.147/src/de.rs:2031:14)", +"0x104161030: serde_core::de::MapAccess::next_value (src/de/mod.rs:1918:14)", +"0x104161030: ::deserialize::__Visitor as serde_core::de::Visitor>::visit_map (core/config/config_fs.rs:93:21)", +"0x104161030: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_struct (serde_json-1.0.147/src/de.rs:1849:39)", +"0x104161030: grimoire_css_lib::core::config::config_fs::_::::deserialize (core/config/config_fs.rs:93:21)", +"0x104161030: as serde_core::de::SeqAccess>::next_element_seed (serde_json-1.0.147/src/de.rs:1963:31)", +"0x104161030: serde_core::de::SeqAccess::next_element (src/de/mod.rs:1773:14)", +"0x104161030: >::deserialize::VecVisitor as serde_core::de::Visitor>::visit_seq (src/de/impls.rs:1164:50)", +"0x104161030: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_seq (serde_json-1.0.147/src/de.rs:1750:39)", +"0x104161030: serde_core::de::impls::>::deserialize (src/de/impls.rs:1175:22)", +"0x1041073c8: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1041073c8: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x1041073c8: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x1041073c8: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x1041073c8: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1041073c8: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x1041073c8: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x1041073c8: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x1041073c8: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", +"0x1041073c8: alloc::str::::to_owned (alloc/src/str.rs:211:62)", +"0x1041073c8: browserslist::queries::browser_accurate::browser_accurate (src/queries/browser_accurate.rs:27:44)", +"0x1040f9ec0: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", +"0x1040f9ec0: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", +"0x1040f9ec0: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", +"0x1040f9ec0: alloc::vec::Vec::append_elements (src/vec/mod.rs:2732:14)", +"0x1040f9ec0: alloc::vec::Vec::append (src/vec/mod.rs:2721:18)", +"0x1040f9ec0: browserslist::resolve::{{closure}} (browserslist-rs-0.19.0/src/lib.rs:122:26)", +"0x1040f9ec0: as core::iter::traits::iterator::Iterator>::try_fold::enumerate::{{closure}} (iter/adapters/enumerate.rs:119:27)", +"0x1040f9ec0: as core::iter::traits::iterator::Iterator>::try_fold (src/vec/into_iter.rs:351:25)", +"0x1040f9ec0: as core::iter::traits::iterator::Iterator>::try_fold (iter/adapters/enumerate.rs:125:19)", +"0x1040f9ec0: browserslist::resolve (browserslist-rs-0.19.0/src/lib.rs:111:10)", +"0x1040f9ec0: browserslist::queries::dead::dead (src/queries/dead.rs:5:5)", +"0x1040f9ec0: browserslist::queries::query (src/queries/mod.rs:219:28)", +"0x104159fd8: as serde_core::de::MapAccess>::next_value_seed (serde_json-1.0.147/src/de.rs:2031:14)", +"0x104159fd8: serde_core::de::MapAccess::next_value (src/de/mod.rs:1918:14)", +"0x104159fd8: ::deserialize::__Visitor as serde_core::de::Visitor>::visit_map (core/config/config_fs.rs:69:21)", +"0x104159fd8: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_struct (serde_json-1.0.147/src/de.rs:1849:39)", +"0x104159fd8: grimoire_css_lib::core::config::config_fs::_::::deserialize (core/config/config_fs.rs:69:21)", +"0x104159fd8: serde_json::de::from_trait (serde_json-1.0.147/src/de.rs:2501:22)", +"0x104159fd8: serde_json::de::from_str (serde_json-1.0.147/src/de.rs:2701:5)", +"0x104159fd8: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:174:41)", +"0x104257978: std::sys::sync::once_box::OnceBox::get_or_init (sys/sync/once_box.rs:51:26)", +"0x104257978: std::sys::sync::mutex::pthread::Mutex::get (sync/mutex/pthread.rs:22:18)", +"0x104257978: std::sys::sync::mutex::pthread::Mutex::lock (sync/mutex/pthread.rs:36:23)", +"0x104257978: std::sync::poison::mutex::Mutex::lock (sync/poison/mutex.rs:437:24)", +"0x104257978: indicatif::progress_bar::ProgressBar::stop_and_replace_ticker (indicatif-0.18.3/src/progress_bar.rs:211:44)", +"0x104257978: indicatif::progress_bar::ProgressBar::enable_steady_tick (indicatif-0.18.3/src/progress_bar.rs:202:14)", +"0x104257978: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:158:8)", +"0x104173130: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104173130: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104173130: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104173130: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104173130: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104173130: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x104173130: grimoire_css_lib::core::spell::Spell::generate_spells_from_classes (src/core/spell.rs:417:26)", +"0x1045459b4: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x1045459b4: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x1045459b4: regex_syntax::ast::Ast::dot (src/ast/mod.rs:516:18)", +"0x1045459b4: regex_syntax::ast::parse::Primitive::into_ast (src/ast/parse.rs:58:37)", +"0x1045459b4: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:1020:63)", +"0x1045459b4: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", +"0x1045459b4: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", +"0x1045459b4: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", +"0x1045459b4: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", +"0x104228234: regex_automata::meta::regex::Regex::captures_iter (src/meta/regex.rs:656:25)", +"0x104228234: regex::regex::string::Regex::captures_iter (src/regex/string.rs:424:50)", +"0x104228234: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::handle_generic_css (core/css_generator/css_generator_base.rs:514:14)", +"0x10412bcf8: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x10412bcf8: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x10412bcf8: alloc::rc::Rc::new (alloc/src/rc.rs:412:27)", +"0x10412bcf8: >::from (cssparser-0.33.0/src/cow_rc_str.rs:57:27)", +"0x10412bcf8: >::into (src/convert/mod.rs:784:9)", +"0x10412bcf8: cssparser::tokenizer::consume_name (cssparser-0.33.0/src/tokenizer.rs:989:57)", +"0x10412b274: cssparser::tokenizer::consume_ident_like (cssparser-0.33.0/src/tokenizer.rs:907:17)", +"0x10412a468: cssparser::tokenizer::next_token (cssparser-0.33.0/src/tokenizer.rs:0:0)", +"0x104129ab8: cssparser::tokenizer::Tokenizer::next (cssparser-0.33.0/src/tokenizer.rs:267:9)", +"0x104129ab8: cssparser::parser::Parser::next_including_whitespace_and_comments (cssparser-0.33.0/src/parser.rs:664:18)", +"0x10450d380: cssparser::parser::Parser::next_including_whitespace (cssparser-0.33.0/src/parser.rs:617:24)", +"0x10450d380: parcel_selectors::parser::parse_one_simple_selector (index.crates.io-1949cf8c6b5b557f/parcel_selectors-0.28.2/parser.rs:2995:32)", +"0x10450d380: parcel_selectors::parser::parse_compound_selector (index.crates.io-1949cf8c6b5b557f/parcel_selectors-0.28.2/parser.rs:2720:24)", +"0x10450d380: parcel_selectors::parser::parse_selector (index.crates.io-1949cf8c6b5b557f/parcel_selectors-0.28.2/parser.rs:2136:17)", +"0x1045170ec: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1045170ec: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x1045170ec: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x1045170ec: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x1045170ec: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1045170ec: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x1045170ec: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:31:34)", +"0x1045170ec: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x1045170ec: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x1045170ec: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x1045137d4: parcel_selectors::builder::SelectorBuilder::build_with_specificity_and_flags (index.crates.io-1949cf8c6b5b557f/parcel_selectors-0.28.2/builder.rs:145:17)", +"0x1045137d4: parcel_selectors::builder::SelectorBuilder::build (index.crates.io-1949cf8c6b5b557f/parcel_selectors-0.28.2/builder.rs:119:10)", +"0x1045137d4: parcel_selectors::parser::parse_selector (index.crates.io-1949cf8c6b5b557f/parcel_selectors-0.28.2/parser.rs:2237:36)", +"0x104259dcc: alloc::fmt::format::{{closure}} (alloc/src/fmt.rs:654:34)", +"0x104259dcc: core::option::Option::map_or_else (core/src/option.rs:1271:21)", +"0x104259dcc: alloc::fmt::format (alloc/src/fmt.rs:654:19)", +"0x104259dcc: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:180:27)", +"0x1041425bc: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1041425bc: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x1041425bc: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x1041425bc: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x1041425bc: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1041425bc: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x1041425bc: alloc::slice:: for alloc::vec::Vec>::with_capacity (alloc/src/slice.rs:863:9)", +"0x1041425bc: core::slice::sort::stable::driftsort_main (sort/stable/mod.rs:127:20)", +"0x104147714: core::slice::sort::stable::sort (sort/stable/mod.rs:83:13)", +"0x104147714: alloc::slice::stable_sort (alloc/src/slice.rs:856:5)", +"0x104147714: alloc::slice::::sort_by (alloc/src/slice.rs:194:9)", +"0x104147714: glob::fill_todo (glob-0.3.3/src/lib.rs:957:30)", +"0x1045e74ac: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x1045e74ac: alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle (src/raw_vec/mod.rs:557:35)", +"0x1041476c8: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", +"0x1041476c8: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", +"0x1041476c8: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", +"0x1041476c8: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3770:18)", +"0x1041476c8: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", +"0x1041476c8: as core::iter::traits::collect::Extend>::extend (src/vec/mod.rs:3702:9)", +"0x1041476c8: glob::fill_todo (glob-0.3.3/src/lib.rs:958:26)", +"0x104542c0c: regex_automata::hybrid::dfa::DFA::next_state (src/hybrid/dfa.rs:1228:32)", +"0x104542c0c: regex_automata::hybrid::search::find_fwd_imp (src/hybrid/search.rs:228:22)", +"0x104542c0c: regex_automata::hybrid::search::find_fwd (src/hybrid/search.rs:38:13)", +"0x1045b8c48: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x1045b8c48: alloc::raw_vec::RawVecInner::grow_one (alloc/src/alloc.rs:571:32)", +"0x1045b8c48: alloc::raw_vec::RawVec::grow_one (alloc/src/alloc.rs:340:20)", +"0x10416af9c: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x10416af9c: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x10416af9c: >::deserialize::VecVisitor as serde_core::de::Visitor>::visit_seq (src/de/impls.rs:1165:28)", +"0x10416af9c: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_seq (serde_json-1.0.147/src/de.rs:1750:39)", +"0x10416af9c: serde_core::de::impls::>::deserialize (src/de/impls.rs:1175:22)", +"0x104257434: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104257434: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104257434: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104257434: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104257434: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104257434: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x104257434: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x104257434: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x104257434: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", +"0x104257434: alloc::str::::to_owned (alloc/src/str.rs:211:62)", +"0x104257434: >::from (alloc/src/string.rs:3056:11)", +"0x104257434: <&str as alloc::string::SpecToString>::spec_to_string (alloc/src/string.rs:2977:21)", +"0x104257434: ::to_string (alloc/src/string.rs:2809:9)", +"0x104257434: indicatif::style::ProgressStyle::tick_strings::{{closure}} (indicatif-0.18.3/src/style.rs:150:48)", +"0x104257434: core::iter::adapters::map::map_fold::{{closure}} (iter/adapters/map.rs:88:28)", +"0x104257434: as core::iter::traits::iterator::Iterator>::fold (slice/iter/macros.rs:255:27)", +"0x104257434: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/map.rs:128:19)", +"0x104257434: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", +"0x104257434: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3774:26)", +"0x104257434: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", +"0x104257434: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:62:16)", +"0x104257434: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x104257434: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x104257434: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x104257434: indicatif::style::ProgressStyle::tick_strings (indicatif-0.18.3/src/style.rs:150:68)", +"0x104257434: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:157:51)", +"0x10415a968: std::path::Path::join (std/src/path.rs:2742:14)", +"0x10415a968: grimoire_css_lib::core::config::config_fs::ConfigFs::find_custom_animations (core/config/config_fs.rs:516:67)", +"0x10415a968: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:178:36)", +"0x10411ad2c: ::allocate (alloc/src/alloc.rs:250:14)", +"0x10411ad2c: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x10411ad2c: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x10411ad2c: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x10411ad2c: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x10411ad2c: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x10411ad2c: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x10411ad2c: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x10411ad2c: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", +"0x10411ad2c: alloc::str::::to_owned (alloc/src/str.rs:211:62)", +"0x10411ad2c: >::from (alloc/src/string.rs:3056:11)", +"0x10411ad2c: >::into (src/convert/mod.rs:784:9)", +"0x10411ad2c: console::utils::default_colors_enabled::{{closure}} (console-0.16.2/src/utils.rs:18:63)", +"0x10411ad2c: core::result::Result::unwrap_or_else (core/src/result.rs:1525:23)", +"0x10411ad2c: console::utils::default_colors_enabled (console-0.16.2/src/utils.rs:18:40)", +"0x10411aa84: console::utils::STDOUT_COLORS::{{closure}} (console-0.16.2/src/utils.rs:26:34)", +"0x10411aa84: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", +"0x104568e8c: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", +"0x104568e8c: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", +"0x104568e8c: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", +"0x104568e8c: alloc::vec::Vec::extend_with (src/vec/mod.rs:3355:14)", +"0x104568e8c: alloc::vec::Vec::resize (src/vec/mod.rs:3234:18)", +"0x104568e8c: regex_automata::dfa::onepass::Cache::reset (src/dfa/onepass.rs:2563:29)", +"0x104568e8c: regex_automata::dfa::onepass::Cache::new (src/dfa/onepass.rs:2517:15)", +"0x104568e8c: regex_automata::dfa::onepass::DFA::create_cache (src/dfa/onepass.rs:1374:9)", +"0x104568e8c: regex_automata::meta::wrappers::OnePassCache::new::{{closure}} (src/meta/wrappers.rs:481:57)", +"0x104568e8c: core::option::Option::map (core/src/option.rs:1158:29)", +"0x104568e8c: regex_automata::meta::wrappers::OnePassCache::new (src/meta/wrappers.rs:481:45)", +"0x104568e8c: regex_automata::meta::wrappers::OnePass::create_cache (src/meta/wrappers.rs:335:9)", +"0x104568e8c: ::create_cache (src/meta/strategy.rs:678:35)", +"0x104568e8c: ::create_cache (src/meta/strategy.rs:1304:19)", +"0x104165d98: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x104165d98: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x104165d98: grimoire_css_lib::core::config::config_fs::ConfigFs::expand_glob_patterns (core/config/config_fs.rs:568:35)", +"0x10444c2ac: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x10444c2ac: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x10444c2ac: lightningcss::properties::size::SizeHandler::flush (src/properties/size.rs:517:16)", +"0x10415d7d8: ::allocate (alloc/src/alloc.rs:250:14)", +"0x10415d7d8: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x10415d7d8: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x10415d7d8: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x10415d7d8: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x10415d7d8: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x10415d7d8: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x10415d7d8: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x10415d7d8: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", +"0x10415d7d8: alloc::str::::to_owned (alloc/src/str.rs:211:62)", +"0x10415d7d8: as alloc::string::SpecToString>::spec_to_string (alloc/src/string.rs:3004:18)", +"0x10415d7d8: ::to_string (alloc/src/string.rs:2809:9)", +"0x10415d7d8: grimoire_css_lib::core::config::config_fs::ConfigFs::load_external_variables (core/config/config_fs.rs:725:14)", +"0x10415d7d8: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:184:28)", +"0x10415c604: std::path::Path::join (std/src/path.rs:2742:14)", +"0x10415c604: grimoire_css_lib::core::config::config_fs::ConfigFs::load_external_scrolls (core/config/config_fs.rs:601:80)", +"0x10415c604: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:181:26)", +"0x10450c520: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x10450c520: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x10450c520: as cssparser::rules_and_declarations::QualifiedRuleParser>::parse_block (lightningcss-1.0.0-alpha.68/src/parser.rs:977:18)", +"0x104257320: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104257320: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104257320: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104257320: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104257320: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104257320: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x104257320: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x104257320: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x104257320: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", +"0x104257320: alloc::str::::to_owned (alloc/src/str.rs:211:62)", +"0x104257320: >::from (alloc/src/string.rs:3056:11)", +"0x104257320: <&str as alloc::string::SpecToString>::spec_to_string (alloc/src/string.rs:2977:21)", +"0x104257320: ::to_string (alloc/src/string.rs:2809:9)", +"0x104257320: indicatif::style::ProgressStyle::tick_strings::{{closure}} (indicatif-0.18.3/src/style.rs:150:48)", +"0x104257320: core::iter::adapters::map::map_fold::{{closure}} (iter/adapters/map.rs:88:28)", +"0x104257320: as core::iter::traits::iterator::Iterator>::fold (slice/iter/macros.rs:255:27)", +"0x104257320: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/map.rs:128:19)", +"0x104257320: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", +"0x104257320: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3774:26)", +"0x104257320: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", +"0x104257320: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:62:16)", +"0x104257320: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x104257320: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x104257320: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x104257320: indicatif::style::ProgressStyle::tick_strings (indicatif-0.18.3/src/style.rs:150:68)", +"0x104257320: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:157:51)", +"0x104213c9c: std::path::Path::join (std/src/path.rs:2742:14)", +"0x104213c9c: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::build::{{closure}} (core/css_builder/css_builder_fs.rs:86:43)", +"0x104213c9c: core::option::Option::map (core/src/option.rs:1158:29)", +"0x104213c9c: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::build (core/css_builder/css_builder_fs.rs:86:18)", +"0x104213c9c: grimoire_css_lib::commands::build::build (src/commands/build.rs:37:61)", +"0x104213c9c: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", +"0x1041132e4: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1041132e4: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x1041132e4: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x1041132e4: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x1041132e4: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x1041132e4: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x1041132e4: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x1041132e4: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x1041132e4: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", +"0x1041132e4: alloc::str::::to_owned (alloc/src/str.rs:211:62)", +"0x1041132e4: alloc::str::::to_ascii_lowercase (alloc/src/str.rs:594:26)", +"0x1041132e4: browserslist_data::caniuse::get_browser_stat (browserslist-data-0.1.4/src/caniuse.rs:105:24)", +"0x104106f80: browserslist::queries::browser_unbounded_range::browser_unbounded_range (src/queries/browser_unbounded_range.rs:11:24)", +"0x1045e48bc: ::allocate (alloc/src/alloc.rs:250:14)", +"0x1045e48bc: hashbrown::raw::alloc::inner::do_alloc (src/raw/alloc.rs:19:21)", +"0x1045e48bc: hashbrown::raw::RawTableInner::new_uninitialized (src/raw/mod.rs:1476:38)", +"0x1045e48bc: hashbrown::raw::RawTableInner::fallible_with_capacity (src/raw/mod.rs:1515:21)", +"0x1045e48bc: hashbrown::raw::RawTableInner::prepare_resize (src/raw/mod.rs:2584:13)", +"0x1045e48bc: hashbrown::raw::RawTableInner::resize_inner (src/raw/mod.rs:2782:34)", +"0x1045e48bc: hashbrown::raw::RawTableInner::reserve_rehash_inner (src/raw/mod.rs:2670:18)", +"0x1045e48bc: hashbrown::raw::RawTable::reserve_rehash (src/raw/mod.rs:991:24)", +"0x104114f54: hashbrown::raw::RawTable::reserve (src/raw/mod.rs:940:22)", +"0x104114f54: hashbrown::raw::RawTable::find_or_find_insert_slot (src/raw/mod.rs:1146:14)", +"0x104114f54: hashbrown::map::HashMap::find_or_find_insert_slot (hashbrown-0.15.4/src/map.rs:1812:20)", +"0x104114f54: hashbrown::map::HashMap::insert (hashbrown-0.15.4/src/map.rs:1792:20)", +"0x104114698: as core::iter::traits::collect::Extend<(K,V)>>::extend::{{closure}} (hashbrown-0.15.4/src/map.rs:4497:18)", +"0x104114698: core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (iter/traits/iterator.rs:824:29)", +"0x104114698: core::iter::adapters::filter_map::filter_map_fold::{{closure}} (iter/adapters/filter_map.rs:40:20)", +"0x104114698: as core::iter::traits::iterator::Iterator>::fold (slice/iter/macros.rs:255:27)", +"0x104114698: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/filter_map.rs:146:19)", +"0x104114698: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", +"0x104114698: as core::iter::traits::collect::Extend<(K,V)>>::extend (hashbrown-0.15.4/src/map.rs:4496:14)", +"0x104114698: as core::iter::traits::collect::Extend<(K,V)>>::extend (collections/hash/map.rs:2796:19)", +"0x104114698: as core::iter::traits::collect::FromIterator<(K,V)>>::from_iter (ahash-0.8.12/src/hash_map.rs:355:15)", +"0x104114698: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x104114698: browserslist_data::caniuse::BROWSER_VERSION_ALIASES::{{closure}} (browserslist-data-0.1.4/src/caniuse.rs:62:10)", +"0x104114698: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", +"0x10459226c: ::allocate (alloc/src/alloc.rs:250:14)", +"0x10459226c: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x10459226c: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x10459226c: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x10459226c: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x10459226c: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x10459226c: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:54:33)", +"0x10459226c: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x10459226c: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x10459226c: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x10459226c: regex_syntax::hir::interval::IntervalSet::new (src/hir/interval.rs:74:52)", +"0x10459226c: regex_syntax::hir::ClassUnicode::new (src/hir/mod.rs:1065:29)", +"0x10459226c: regex_syntax::hir::Hir::dot (src/hir/mod.rs:661:55)", +"0x10459226c: regex_syntax::hir::translate::TranslatorI::hir_dot (src/hir/translate.rs:916:12)", +"0x10459226c: ::visit_post (src/hir/translate.rs:393:47)", +"0x104156990: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", +"0x104156990: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", +"0x104156990: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", +"0x104161658: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x104161658: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x104161658: >::deserialize::VecVisitor as serde_core::de::Visitor>::visit_seq (src/de/impls.rs:1165:28)", +"0x104161658: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_seq (serde_json-1.0.147/src/de.rs:1750:39)", +"0x104161658: serde_core::de::impls::>::deserialize (src/de/impls.rs:1175:22)", +"0x104161658: as serde_core::de::DeserializeSeed>::deserialize (src/de/mod.rs:825:9)", +"0x104257d20: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x104257d20: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x104257d20: std::sys::pal::unix::thread::Thread::new (pal/unix/thread.rs:47:34)", +"0x104257d20: std::thread::Builder::spawn_unchecked_ (src/thread/mod.rs:598:30)", +"0x104257d20: std::thread::Builder::spawn_unchecked (src/thread/mod.rs:467:37)", +"0x104257d20: std::thread::Builder::spawn (src/thread/mod.rs:399:23)", +"0x104257d20: std::thread::spawn (src/thread/mod.rs:729:20)", +"0x104257d20: indicatif::progress_bar::Ticker::new (indicatif-0.18.3/src/progress_bar.rs:706:27)", +"0x104257d20: indicatif::progress_bar::ProgressBar::stop_and_replace_ticker::{{closure}} (indicatif-0.18.3/src/progress_bar.rs:216:49)", +"0x104257d20: core::option::Option::map (core/src/option.rs:1158:29)", +"0x104257d20: indicatif::progress_bar::ProgressBar::stop_and_replace_ticker (indicatif-0.18.3/src/progress_bar.rs:216:34)", +"0x104257d20: indicatif::progress_bar::ProgressBar::enable_steady_tick (indicatif-0.18.3/src/progress_bar.rs:202:14)", +"0x104257d20: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:158:8)", +"0x1045f4be0: std::collections::hash::map::HashMap::insert (collections/hash/map.rs:1204:19)", +"0x1045f4be0: regex_automata::hybrid::dfa::Lazy::add_state (src/hybrid/dfa.rs:2321:33)", +"0x1045f4be0: regex_automata::hybrid::dfa::Lazy::add_builder_state (src/hybrid/dfa.rs:2270:27)", +"0x1045f4be0: regex_automata::hybrid::dfa::Lazy::cache_next_state (src/hybrid/dfa.rs:2151:25)", +"0x104257400: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104257400: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104257400: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104257400: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104257400: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104257400: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x104257400: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x104257400: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x104257400: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", +"0x104257400: alloc::str::::to_owned (alloc/src/str.rs:211:62)", +"0x104257400: >::from (alloc/src/string.rs:3056:11)", +"0x104257400: <&str as alloc::string::SpecToString>::spec_to_string (alloc/src/string.rs:2977:21)", +"0x104257400: ::to_string (alloc/src/string.rs:2809:9)", +"0x104257400: indicatif::style::ProgressStyle::tick_strings::{{closure}} (indicatif-0.18.3/src/style.rs:150:48)", +"0x104257400: core::iter::adapters::map::map_fold::{{closure}} (iter/adapters/map.rs:88:28)", +"0x104257400: as core::iter::traits::iterator::Iterator>::fold (slice/iter/macros.rs:255:27)", +"0x104257400: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/map.rs:128:19)", +"0x104257400: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", +"0x104257400: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3774:26)", +"0x104257400: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", +"0x104257400: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:62:16)", +"0x104257400: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x104257400: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x104257400: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x104257400: indicatif::style::ProgressStyle::tick_strings (indicatif-0.18.3/src/style.rs:150:68)", +"0x104257400: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:157:51)", +"0x10425c1c4: ::fmt (src/fmt/mod.rs:2753:11)", +"0x10425c1c4: ::fmt (alloc/src/string.rs:2627:9)", +"0x10425c1c4: as core::fmt::Display>::fmt (console-0.16.2/src/utils.rs:811:17)", +"0x104259e3c: alloc::fmt::format::{{closure}} (alloc/src/fmt.rs:654:34)", +"0x104259e3c: core::option::Option::map_or_else (core/src/option.rs:1271:21)", +"0x104259e3c: alloc::fmt::format (alloc/src/fmt.rs:654:19)", +"0x104259e3c: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:178:23)", +"0x10415d780: std::path::Path::join (std/src/path.rs:2742:14)", +"0x10415d780: grimoire_css_lib::core::config::config_fs::ConfigFs::load_external_variables (core/config/config_fs.rs:723:14)", +"0x10415d780: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:184:28)", +"0x104158c50: std::collections::hash::map::HashMap::insert (collections/hash/map.rs:1204:19)", +"0x104158c50: grimoire_css_lib::core::component::COMPONENTS_MAP::{{closure}} (src/core/component.rs:482:11)", +"0x104158c50: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", +"0x1042227ac: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", +"0x1042227ac: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", +"0x1042227ac: grimoire_css_lib::core::css_builder::css_builder_base::CssBuilder::build_joined_css_and_pieces (core/css_builder/css_builder_base.rs:234:41)", +"0x10455571c: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x10455571c: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", +"0x10455571c: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", +"0x10455571c: regex_automata::util::prefilter::Prefilter::from_choice (util/prefilter/mod.rs:227:38)", +"0x10454d874: regex_automata::util::prefilter::Prefilter::new::{{closure}} (util/prefilter/mod.rs:210:13)", +"0x10454d874: core::option::Option::and_then (core/src/option.rs:1537:24)", +"0x10454d874: regex_automata::util::prefilter::Prefilter::new (util/prefilter/mod.rs:207:36)", +"0x10454d874: regex_automata::meta::strategy::ReverseSuffix::new (src/meta/strategy.rs:1188:25)", +"0x10454d874: regex_automata::meta::strategy::new (src/meta/strategy.rs:170:18)", +"0x10415c5c0: grimoire_css_lib::core::config::config_fs::ConfigFs::load_external_scrolls (core/config/config_fs.rs:601:26)", +"0x10415c5c0: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:181:26)", +"0x104170db8: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104170db8: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104170db8: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104170db8: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104170db8: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104170db8: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", +"0x104170db8: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:31:34)", +"0x104170db8: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", +"0x104170db8: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", +"0x104170db8: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", +"0x10416fa8c: grimoire_css_lib::core::spell::Spell::new (src/core/spell.rs:130:14)", +"0x104226f88: alloc::fmt::format::{{closure}} (alloc/src/fmt.rs:654:34)", +"0x104226f88: core::option::Option::map_or_else (core/src/option.rs:1271:21)", +"0x104226f88: alloc::fmt::format (alloc/src/fmt.rs:654:19)", +"0x104226f88: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::escape_css_class_name::{{closure}} (core/css_generator/css_generator_base.rs:277:53)", +"0x10412bae8: ::allocate (alloc/src/alloc.rs:250:14)", +"0x10412bae8: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x10412bae8: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x10412bae8: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x10412bae8: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x10412bae8: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x10412bae8: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x10412bae8: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x10412bae8: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", +"0x10412bae8: cssparser::tokenizer::consume_name (cssparser-0.33.0/src/tokenizer.rs:937:74)", +"0x10415a934: grimoire_css_lib::core::config::config_fs::ConfigFs::find_custom_animations (core/config/config_fs.rs:516:13)", +"0x10415a934: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:178:36)", +"0x104145420: ::allocate (alloc/src/alloc.rs:250:14)", +"0x104145420: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", +"0x104145420: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", +"0x104145420: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", +"0x104145420: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", +"0x104145420: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", +"0x104145420: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", +"0x104145420: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", +"0x104145420: std::sys::os_str::bytes::Slice::to_owned (sys/os_str/bytes.rs:314:33)", +"0x104145420: std::ffi::os_str::OsStr::to_os_string (src/ffi/os_str.rs:984:38)", +"0x104145420: >::from (std/src/path.rs:1845:34)", +"0x104145420: glob::glob_with::{{closure}} (glob-0.3.3/src/lib.rs:246:37)", +"0x104145420: core::option::Option::map_or_else (core/src/option.rs:1271:21)", +"0x104145420: glob::glob_with (glob-0.3.3/src/lib.rs:246:22)", +"0x104145420: glob::glob (glob-0.3.3/src/lib.rs:165:5)", +"0x1040f8ad8: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", +"0x1040f8ad8: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", +"0x1040f8ad8: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", +"0x1040f8ad8: alloc::vec::Vec::append_elements (src/vec/mod.rs:2732:14)", +"0x1040f8ad8: as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter>>::spec_extend (src/vec/spec_extend.rs:61:23)", +"0x1040f8ad8: alloc::vec::Vec::extend_from_slice (src/vec/mod.rs:3262:14)", +"0x1040f8ad8: alloc::string::String::push_str (alloc/src/string.rs:1113:18)", +"0x1040f8ad8: browserslist::resolve::{{closure}} (browserslist-rs-0.19.0/src/lib.rs:103:15)", +"0x1040f8ad8: as core::iter::traits::iterator::Iterator>::fold::enumerate::{{closure}} (iter/adapters/enumerate.rs:140:27)", +"0x1040f8ad8: core::ops::try_trait::NeverShortCircuit::wrap_mut_2::{{closure}} (src/ops/try_trait.rs:401:39)", +"0x1040f8ad8: core::array::iter::iter_inner::PolymorphicIter<[core::mem::maybe_uninit::MaybeUninit]>::try_fold::{{closure}} (array/iter/iter_inner.rs:220:13)", +"0x1040f8ad8: ::try_fold (src/ops/index_range.rs:169:21)", +"0x1040f8ad8: core::array::iter::iter_inner::PolymorphicIter<[core::mem::maybe_uninit::MaybeUninit]>::try_fold (array/iter/iter_inner.rs:215:20)", +"0x1040f8ad8: core::array::iter::iter_inner::PolymorphicIter<[core::mem::maybe_uninit::MaybeUninit]>::fold (array/iter/iter_inner.rs:202:14)", +"0x1040f8ad8: as core::iter::traits::iterator::Iterator>::fold (src/array/iter.rs:253:27)", +"0x1040f8ad8: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/enumerate.rs:146:19)", +"0x1040f8ad8: browserslist::resolve (browserslist-rs-0.19.0/src/lib.rs:99:10)", +"0x1040f8ad8: browserslist::queries::dead::dead (src/queries/dead.rs:5:5)", +"0x1040f8ad8: browserslist::queries::query (src/queries/mod.rs:219:28)", +"0x104107360: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", +"0x104107360: browserslist::queries::browser_accurate::browser_accurate (src/queries/browser_accurate.rs:27:12)" +] +} \ No newline at end of file diff --git a/benchmark/main.py b/benchmark/main.py index 2335ec0..b166b84 100644 --- a/benchmark/main.py +++ b/benchmark/main.py @@ -28,6 +28,7 @@ import psutil import time import datetime +import subprocess from pathlib import Path from core.project_creator import create_benchmark_projects @@ -66,6 +67,23 @@ def parse_args(): def collect_system_info(): """Collect information about the system for benchmark context.""" + # Best-effort git metadata to make benchmark results reproducible. + git_sha = None + git_dirty = None + try: + git_sha = subprocess.check_output( + ["git", "rev-parse", "HEAD"], + stderr=subprocess.DEVNULL, + text=True, + ).strip() + git_dirty = subprocess.call( + ["git", "diff", "--quiet"], + stdout=subprocess.DEVNULL, + stderr=subprocess.DEVNULL, + ) != 0 + except Exception: + pass + return { "os": { "name": platform.system(), @@ -80,6 +98,11 @@ def collect_system_info(): "memory": { "total_gb": round(psutil.virtual_memory().total / (1024**3), 1) }, + "psutil_version": getattr(psutil, "__version__", "unknown"), + "git": { + "sha": git_sha, + "dirty": git_dirty, + }, "python_version": platform.python_version(), "timestamp": time.time(), "timestamp_human": time.strftime("%Y-%m-%d %H:%M:%S") diff --git a/benchmark/results/result_20251226_155808.json b/benchmark/results/result_20251226_155808.json new file mode 100644 index 0000000..a538998 --- /dev/null +++ b/benchmark/results/result_20251226_155808.json @@ -0,0 +1,137 @@ +{ + "system_info": { + "os": { + "name": "Darwin", + "version": "Darwin Kernel Version 25.2.0: Tue Nov 18 21:07:05 PST 2025; root:xnu-12377.61.12~1/RELEASE_ARM64_T6020", + "release": "25.2.0" + }, + "cpu": { + "name": "arm", + "cores_logical": 12, + "cores_physical": 12 + }, + "memory": { + "total_gb": 32.0 + }, + "psutil_version": "7.0.0", + "git": { + "sha": "bafd6c9b745de683c9007c3ec0d40e900d23867c", + "dirty": true + }, + "python_version": "3.14.2", + "timestamp": 1766761088.047711, + "timestamp_human": "2025-12-26 15:58:08" + }, + "grimoire": { + "input": { + "unique_class_count": 400006, + "total_input_size_bytes": 49487280, + "file_count": 100000 + }, + "output": { + "file_count": 10, + "total_size_bytes": 5296800, + "total_size_kb": 5172.65625, + "avg_size_bytes": 529680.0, + "avg_size_kb": 517.265625 + }, + "process": { + "memory": { + "peak_bytes": 203980800, + "peak_mb": 194.53125, + "avg_bytes": 94444584.96, + "avg_mb": 90.069375, + "measurement": "rss", + "rss_peak_bytes": 203980800, + "rss_peak_mb": 194.53125, + "rss_avg_bytes": 94444584.96, + "rss_avg_mb": 90.069375, + "uss_peak_bytes": 108871680, + "uss_peak_mb": 103.828125, + "uss_avg_bytes": 42206931.626666665, + "uss_avg_mb": 40.251666666666665, + "uss_is_complete": true, + "uss_partial_peak_bytes": 108871680, + "uss_partial_peak_mb": 103.828125, + "uss_partial_avg_bytes": 42206931.626666665, + "uss_partial_avg_mb": 40.251666666666665, + "uss_coverage_avg": 0.9868421052631579, + "uss_process_count_avg": 1, + "uss_process_count_max": 1, + "uss_available_count_avg": 0.9868421052631579, + "uss_available_count_max": 1, + "std_dev_mb": 60.83214424364095 + }, + "cpu": { + "user_time": 0.977391933, + "system_time": 5.1558802219999995, + "total_time": 6.133272154999999 + }, + "io": { + "read_bytes": 49487280, + "read_mb": 47.19474792480469, + "write_bytes": 5296800, + "write_mb": 5.051422119140625 + } + }, + "throughput": { + "build_time_seconds": 1.3830058574676514, + "classes_per_second": 289229.4330064731, + "memory_efficiency": 2056.2557429718877, + "bytes_processed_per_second": 35782408.10245991, + "bytes_generated_per_second": 3829918.7030911706 + }, + "exit_code": 0, + "success": true, + "run": { + "executable": "../target/release/grimoire_css", + "argv": [ + "../target/release/grimoire_css", + "build" + ] + } + }, + "tailwind": { + "input": { + "unique_class_count": 400006, + "total_input_size_bytes": 49487280, + "file_count": 100000 + }, + "output": { + "file_count": 10, + "total_size_bytes": 5937710, + "total_size_kb": 5798.544921875, + "avg_size_bytes": 593771.0, + "avg_size_kb": 579.8544921875 + }, + "process": { + "memory": { + "peak_bytes": 319979520, + "peak_mb": 305.15625, + "avg_bytes": 164517906.3402985, + "avg_mb": 156.89650186567164, + "std_dev_mb": 75.13581769415364 + }, + "cpu": { + "user_time": 8.839859546000001, + "system_time": 21.720051988999998, + "total_time": 30.559911534999998 + }, + "io": { + "read_bytes": 49487280, + "read_mb": 47.19474792480469, + "write_bytes": 5937710, + "write_mb": 5.662641525268555 + } + }, + "throughput": { + "build_time_seconds": 7.947704076766968, + "classes_per_second": 50329.75512630281, + "memory_efficiency": 1310.8235535074245, + "bytes_processed_per_second": 6226613.311467283, + "bytes_generated_per_second": 747097.5193147089 + }, + "exit_code": 0, + "success": true + } +} \ No newline at end of file diff --git a/benchmark/results/result_20251226_155808.txt b/benchmark/results/result_20251226_155808.txt new file mode 100644 index 0000000..48919f6 --- /dev/null +++ b/benchmark/results/result_20251226_155808.txt @@ -0,0 +1,123 @@ + + +================================================================================================================================================================ +GRIMOIRE PERFORMANCE BENCHMARK REPORT +================================================================================ +Generated: 2025-12-26 15:58:08 + +SYSTEM INFORMATION +-------------------------------------------------------------------------------- +OS: Darwin 25.2.0 +CPU: arm +Cores: 12 physical, 12 logical +Memory: 32.0 GB + +INPUT SUMMARY +-------------------------------------------------------------------------------- +Unique Utility Classes: 400006 +Total Input Size: 47.19 MB +Input HTML Files: 100000 + +PERFORMANCE METRICS +-------------------------------------------------------------------------------- +Build Time: 1.38 s +Processing Speed: 289229.43 classes/second + +MEMORY USAGE +-------------------------------------------------------------------------------- +Peak Memory: 194.53 MB +Average Memory: 90.07 MB +Peak RSS: 194.53 MB +Average RSS: 90.07 MB +Peak USS: 103.83 MB +Average USS: 40.25 MB +Primary Memory Metric: rss +Memory Efficiency: 2056.26 classes/MB +Memory Stability (Std Dev): 60.83 MB +Memory per Class: 509.94 bytes/class + +CPU USAGE +-------------------------------------------------------------------------------- +User CPU Time: 977.39 ms +System CPU Time: 5.16 s +Total CPU Time: 6.13 s + +I/O & OUTPUT METRICS +-------------------------------------------------------------------------------- +Total Read: 47.19 MB +Total Written: 5.05 MB +Output File Count: 10 +Output Size: 5.05 MB + +================================================================================ +TAILWIND PERFORMANCE BENCHMARK REPORT +================================================================================ +Generated: 2025-12-26 15:58:08 + +SYSTEM INFORMATION +-------------------------------------------------------------------------------- +OS: Darwin 25.2.0 +CPU: arm +Cores: 12 physical, 12 logical +Memory: 32.0 GB + +INPUT SUMMARY +-------------------------------------------------------------------------------- +Unique Utility Classes: 400006 +Total Input Size: 47.19 MB +Input HTML Files: 100000 + +PERFORMANCE METRICS +-------------------------------------------------------------------------------- +Build Time: 7.95 s +Processing Speed: 50329.76 classes/second + +MEMORY USAGE +-------------------------------------------------------------------------------- +Peak Memory: 305.16 MB +Average Memory: 156.90 MB +Memory Efficiency: 1310.82 classes/MB +Memory Stability (Std Dev): 75.14 MB +Memory per Class: 799.94 bytes/class + +CPU USAGE +-------------------------------------------------------------------------------- +User CPU Time: 8.84 s +System CPU Time: 21.72 s +Total CPU Time: 30.56 s + +I/O & OUTPUT METRICS +-------------------------------------------------------------------------------- +Total Read: 47.19 MB +Total Written: 5.66 MB +Output File Count: 10 +Output Size: 5.66 MB + +================================================================================ +CSS FRAMEWORKS PERFORMANCE COMPARISON +================================================================================ +Generated: 2025-12-26 15:58:08 + +SYSTEM INFORMATION +-------------------------------------------------------------------------------- +OS: Darwin 25.2.0 +CPU: arm +Cores: 12 physical, 12 logical +Memory: 32.0 GB + +PERFORMANCE COMPARISON +-------------------------------------------------------------------------------- +Metric | Grimoire CSS | Tailwind CSS | Difference | Ratio (G/T) +------------------------------------------------------------------------------------------------ +Build Time | 1.38 s | 7.95 s | 6.56 s | 5.75x +Classes/sec | 289229.43 | 50329.76 | 238899.68 | 5.75x +Peak Memory | 194.53 MB | 305.16 MB | 110.62 MB | 1.57x +Memory Efficiency | 2056.26 classes/MB | 1310.82 classes/MB | 745.43 classes/MB | 1.57x +Output Size | 5.05 MB | 5.66 MB | 625.89 KB | 1.12x + +Notes: +- Build Time: lower is better +- Classes/sec: higher is better +- Peak Memory: lower is better +- Memory Efficiency: higher is better +- Output Size: lower is better \ No newline at end of file diff --git a/benchmark/results/result_20251226_155808_pretty.json b/benchmark/results/result_20251226_155808_pretty.json new file mode 100644 index 0000000..bd49d8d --- /dev/null +++ b/benchmark/results/result_20251226_155808_pretty.json @@ -0,0 +1,118 @@ +{ + "charts": [ + { + "title": "Grimoire CSS vs Tailwind CSS - Build Time", + "chartTitle": "Build Time", + "chartSubtitle": "Total time taken to compile CSS (lower is better)", + "chartId": "chart_time", + "highlightText": "5.7x faster", + "grimoireHeight": 14.791126688824901, + "tailwindHeight": 85.0, + "grimoireValue": "1.38s", + "tailwindValue": "7.95s", + "grimoireRawValue": 1.38, + "tailwindRawValue": 7.95 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Peak Memory Usage", + "chartTitle": "Peak Memory Usage", + "chartSubtitle": "Maximum memory consumed during compilation (lower is better)", + "chartId": "chart_peak_memory", + "highlightText": "1.6x less", + "grimoireHeight": 54.18586789554532, + "tailwindHeight": 85.0, + "grimoireValue": "194.53 MB", + "tailwindValue": "305.16 MB", + "grimoireRawValue": 194.53, + "tailwindRawValue": 305.16 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Average Memory Usage", + "chartTitle": "Average Memory Usage", + "chartSubtitle": "Average memory consumed during compilation (lower is better)", + "chartId": "chart_avg_memory", + "highlightText": "1.7x less", + "grimoireHeight": 48.79584174256903, + "tailwindHeight": 85.0, + "grimoireValue": "90.07 MB", + "tailwindValue": "156.9 MB", + "grimoireRawValue": 90.07, + "tailwindRawValue": 156.9 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - CPU Usage (User Time)", + "chartTitle": "CPU Usage (User Time)", + "chartSubtitle": "CPU time spent in user mode during compilation (lower is better)", + "chartId": "chart_cpu_user", + "highlightText": "9.0x less", + "grimoireHeight": 9.398148677893031, + "tailwindHeight": 85.0, + "grimoireValue": "977.39ms", + "tailwindValue": "8.84s", + "grimoireRawValue": 0.98, + "tailwindRawValue": 8.84 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - CPU Usage (System Time)", + "chartTitle": "CPU Usage (System Time)", + "chartSubtitle": "CPU time spent in system mode during compilation (lower is better)", + "chartId": "chart_cpu_system", + "highlightText": "4.2x less", + "grimoireHeight": 20.177199349796638, + "tailwindHeight": 85.0, + "grimoireValue": "5.16s", + "tailwindValue": "21.72s", + "grimoireRawValue": 5.16, + "tailwindRawValue": 21.72 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Output Size", + "chartTitle": "Output Size", + "chartSubtitle": "Size of the generated CSS file (lower is better)", + "chartId": "chart_output", + "highlightText": "1.1x less", + "grimoireHeight": 75.82519186689818, + "tailwindHeight": 85.0, + "grimoireValue": "5.05 MB", + "tailwindValue": "5.66 MB", + "grimoireRawValue": 5172.66, + "tailwindRawValue": 5798.54 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Processing Speed", + "chartTitle": "Processing Speed", + "chartSubtitle": "Number of utility classes processed per second (higher is better)", + "chartId": "chart_classes_per_second", + "highlightText": "5.7x faster", + "grimoireHeight": 85.0, + "tailwindHeight": 14.791126688824901, + "grimoireValue": "289229.43 classes/s", + "tailwindValue": "50329.76 classes/s", + "grimoireRawValue": 289229.43, + "tailwindRawValue": 50329.76 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Memory Efficiency", + "chartTitle": "Memory Efficiency", + "chartSubtitle": "Number of utility classes processed per MB of memory (higher is better)", + "chartId": "chart_memory_efficiency", + "highlightText": "1.6x more efficient", + "grimoireHeight": 85.0, + "tailwindHeight": 54.18586789554531, + "grimoireValue": "2056.26 classes/MB", + "tailwindValue": "1310.82 classes/MB", + "grimoireRawValue": 2056.26, + "tailwindRawValue": 1310.82 + } + ], + "metadata": { + "timestamp": 1766761088.047711, + "timestamp_human": "2025-12-26 15:58:08", + "system": { + "os": "Darwin 25.2.0", + "cpu": "arm", + "cores": "12 physical, 12 logical", + "memory": "32.0 GB" + } + } +} \ No newline at end of file diff --git a/benchmark/results/result_20251226_155838.json b/benchmark/results/result_20251226_155838.json new file mode 100644 index 0000000..2034456 --- /dev/null +++ b/benchmark/results/result_20251226_155838.json @@ -0,0 +1,137 @@ +{ + "system_info": { + "os": { + "name": "Darwin", + "version": "Darwin Kernel Version 25.2.0: Tue Nov 18 21:07:05 PST 2025; root:xnu-12377.61.12~1/RELEASE_ARM64_T6020", + "release": "25.2.0" + }, + "cpu": { + "name": "arm", + "cores_logical": 12, + "cores_physical": 12 + }, + "memory": { + "total_gb": 32.0 + }, + "psutil_version": "7.0.0", + "git": { + "sha": "bafd6c9b745de683c9007c3ec0d40e900d23867c", + "dirty": true + }, + "python_version": "3.14.2", + "timestamp": 1766761118.166788, + "timestamp_human": "2025-12-26 15:58:38" + }, + "grimoire": { + "input": { + "unique_class_count": 400006, + "total_input_size_bytes": 49487280, + "file_count": 100000 + }, + "output": { + "file_count": 10, + "total_size_bytes": 5296800, + "total_size_kb": 5172.65625, + "avg_size_bytes": 529680.0, + "avg_size_kb": 517.265625 + }, + "process": { + "memory": { + "peak_bytes": 177815552, + "peak_mb": 169.578125, + "avg_bytes": 108863078.4, + "avg_mb": 103.819921875, + "measurement": "rss", + "rss_peak_bytes": 177815552, + "rss_peak_mb": 169.578125, + "rss_avg_bytes": 108863078.4, + "rss_avg_mb": 103.819921875, + "uss_peak_bytes": 125648896, + "uss_peak_mb": 119.828125, + "uss_avg_bytes": 47817728, + "uss_avg_mb": 45.6025390625, + "uss_is_complete": true, + "uss_partial_peak_bytes": 125648896, + "uss_partial_peak_mb": 119.828125, + "uss_partial_avg_bytes": 47817728, + "uss_partial_avg_mb": 45.6025390625, + "uss_coverage_avg": 1.0, + "uss_process_count_avg": 1, + "uss_process_count_max": 1, + "uss_available_count_avg": 1, + "uss_available_count_max": 1, + "std_dev_mb": 62.631868449728564 + }, + "cpu": { + "user_time": 0.960538225, + "system_time": 3.536485, + "total_time": 4.4970232249999995 + }, + "io": { + "read_bytes": 49487280, + "read_mb": 47.19474792480469, + "write_bytes": 5296800, + "write_mb": 5.051422119140625 + } + }, + "throughput": { + "build_time_seconds": 1.4513750076293945, + "classes_per_second": 275604.85601398797, + "memory_efficiency": 2358.8301852022482, + "bytes_processed_per_second": 34096825.244931094, + "bytes_generated_per_second": 3649504.7607658175 + }, + "exit_code": 0, + "success": true, + "run": { + "executable": "../target/release/grimoire_css", + "argv": [ + "../target/release/grimoire_css", + "build" + ] + } + }, + "tailwind": { + "input": { + "unique_class_count": 400006, + "total_input_size_bytes": 49487280, + "file_count": 100000 + }, + "output": { + "file_count": 10, + "total_size_bytes": 5937710, + "total_size_kb": 5798.544921875, + "avg_size_bytes": 593771.0, + "avg_size_kb": 579.8544921875 + }, + "process": { + "memory": { + "peak_bytes": 322109440, + "peak_mb": 307.1875, + "avg_bytes": 165074442.82779455, + "avg_mb": 157.42725641993957, + "std_dev_mb": 76.01724689330442 + }, + "cpu": { + "user_time": 8.836630919000001, + "system_time": 20.624965570999997, + "total_time": 29.46159649 + }, + "io": { + "read_bytes": 49487280, + "read_mb": 47.19474792480469, + "write_bytes": 5937710, + "write_mb": 5.662641525268555 + } + }, + "throughput": { + "build_time_seconds": 7.885288715362549, + "classes_per_second": 50728.136208974385, + "memory_efficiency": 1302.1558494404883, + "bytes_processed_per_second": 6275899.562635695, + "bytes_generated_per_second": 753011.1089568388 + }, + "exit_code": 0, + "success": true + } +} \ No newline at end of file diff --git a/benchmark/results/result_20251226_155838.txt b/benchmark/results/result_20251226_155838.txt new file mode 100644 index 0000000..bc3d40b --- /dev/null +++ b/benchmark/results/result_20251226_155838.txt @@ -0,0 +1,123 @@ + + +================================================================================================================================================================ +GRIMOIRE PERFORMANCE BENCHMARK REPORT +================================================================================ +Generated: 2025-12-26 15:58:38 + +SYSTEM INFORMATION +-------------------------------------------------------------------------------- +OS: Darwin 25.2.0 +CPU: arm +Cores: 12 physical, 12 logical +Memory: 32.0 GB + +INPUT SUMMARY +-------------------------------------------------------------------------------- +Unique Utility Classes: 400006 +Total Input Size: 47.19 MB +Input HTML Files: 100000 + +PERFORMANCE METRICS +-------------------------------------------------------------------------------- +Build Time: 1.45 s +Processing Speed: 275604.86 classes/second + +MEMORY USAGE +-------------------------------------------------------------------------------- +Peak Memory: 169.58 MB +Average Memory: 103.82 MB +Peak RSS: 169.58 MB +Average RSS: 103.82 MB +Peak USS: 119.83 MB +Average USS: 45.60 MB +Primary Memory Metric: rss +Memory Efficiency: 2358.83 classes/MB +Memory Stability (Std Dev): 62.63 MB +Memory per Class: 444.53 bytes/class + +CPU USAGE +-------------------------------------------------------------------------------- +User CPU Time: 960.54 ms +System CPU Time: 3.54 s +Total CPU Time: 4.50 s + +I/O & OUTPUT METRICS +-------------------------------------------------------------------------------- +Total Read: 47.19 MB +Total Written: 5.05 MB +Output File Count: 10 +Output Size: 5.05 MB + +================================================================================ +TAILWIND PERFORMANCE BENCHMARK REPORT +================================================================================ +Generated: 2025-12-26 15:58:38 + +SYSTEM INFORMATION +-------------------------------------------------------------------------------- +OS: Darwin 25.2.0 +CPU: arm +Cores: 12 physical, 12 logical +Memory: 32.0 GB + +INPUT SUMMARY +-------------------------------------------------------------------------------- +Unique Utility Classes: 400006 +Total Input Size: 47.19 MB +Input HTML Files: 100000 + +PERFORMANCE METRICS +-------------------------------------------------------------------------------- +Build Time: 7.89 s +Processing Speed: 50728.14 classes/second + +MEMORY USAGE +-------------------------------------------------------------------------------- +Peak Memory: 307.19 MB +Average Memory: 157.43 MB +Memory Efficiency: 1302.16 classes/MB +Memory Stability (Std Dev): 76.02 MB +Memory per Class: 805.26 bytes/class + +CPU USAGE +-------------------------------------------------------------------------------- +User CPU Time: 8.84 s +System CPU Time: 20.62 s +Total CPU Time: 29.46 s + +I/O & OUTPUT METRICS +-------------------------------------------------------------------------------- +Total Read: 47.19 MB +Total Written: 5.66 MB +Output File Count: 10 +Output Size: 5.66 MB + +================================================================================ +CSS FRAMEWORKS PERFORMANCE COMPARISON +================================================================================ +Generated: 2025-12-26 15:58:38 + +SYSTEM INFORMATION +-------------------------------------------------------------------------------- +OS: Darwin 25.2.0 +CPU: arm +Cores: 12 physical, 12 logical +Memory: 32.0 GB + +PERFORMANCE COMPARISON +-------------------------------------------------------------------------------- +Metric | Grimoire CSS | Tailwind CSS | Difference | Ratio (G/T) +------------------------------------------------------------------------------------------------- +Build Time | 1.45 s | 7.89 s | 6.43 s | 5.43x +Classes/sec | 275604.86 | 50728.14 | 224876.72 | 5.43x +Peak Memory | 169.58 MB | 307.19 MB | 137.61 MB | 1.81x +Memory Efficiency | 2358.83 classes/MB | 1302.16 classes/MB | 1056.67 classes/MB | 1.81x +Output Size | 5.05 MB | 5.66 MB | 625.89 KB | 1.12x + +Notes: +- Build Time: lower is better +- Classes/sec: higher is better +- Peak Memory: lower is better +- Memory Efficiency: higher is better +- Output Size: lower is better \ No newline at end of file diff --git a/benchmark/results/result_20251226_155838_pretty.json b/benchmark/results/result_20251226_155838_pretty.json new file mode 100644 index 0000000..966bf47 --- /dev/null +++ b/benchmark/results/result_20251226_155838_pretty.json @@ -0,0 +1,118 @@ +{ + "charts": [ + { + "title": "Grimoire CSS vs Tailwind CSS - Build Time", + "chartTitle": "Build Time", + "chartSubtitle": "Total time taken to compile CSS (lower is better)", + "chartId": "chart_time", + "highlightText": "5.4x faster", + "grimoireHeight": 15.645194501014082, + "tailwindHeight": 85.0, + "grimoireValue": "1.45s", + "tailwindValue": "7.89s", + "grimoireRawValue": 1.45, + "tailwindRawValue": 7.89 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Peak Memory Usage", + "chartTitle": "Peak Memory Usage", + "chartSubtitle": "Maximum memory consumed during compilation (lower is better)", + "chartId": "chart_peak_memory", + "highlightText": "1.8x less", + "grimoireHeight": 46.922939979654124, + "tailwindHeight": 85.0, + "grimoireValue": "169.58 MB", + "tailwindValue": "307.19 MB", + "grimoireRawValue": 169.58, + "tailwindRawValue": 307.19 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Average Memory Usage", + "chartTitle": "Average Memory Usage", + "chartSubtitle": "Average memory consumed during compilation (lower is better)", + "chartId": "chart_avg_memory", + "highlightText": "1.5x less", + "grimoireHeight": 56.05568921200658, + "tailwindHeight": 85.0, + "grimoireValue": "103.82 MB", + "tailwindValue": "157.43 MB", + "grimoireRawValue": 103.82, + "tailwindRawValue": 157.43 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - CPU Usage (User Time)", + "chartTitle": "CPU Usage (User Time)", + "chartSubtitle": "CPU time spent in user mode during compilation (lower is better)", + "chartId": "chart_cpu_user", + "highlightText": "9.2x less", + "grimoireHeight": 9.239465795663158, + "tailwindHeight": 85.0, + "grimoireValue": "960.54ms", + "tailwindValue": "8.84s", + "grimoireRawValue": 0.96, + "tailwindRawValue": 8.84 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - CPU Usage (System Time)", + "chartTitle": "CPU Usage (System Time)", + "chartSubtitle": "CPU time spent in system mode during compilation (lower is better)", + "chartId": "chart_cpu_system", + "highlightText": "5.8x less", + "grimoireHeight": 14.57462917769251, + "tailwindHeight": 85.0, + "grimoireValue": "3.54s", + "tailwindValue": "20.62s", + "grimoireRawValue": 3.54, + "tailwindRawValue": 20.62 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Output Size", + "chartTitle": "Output Size", + "chartSubtitle": "Size of the generated CSS file (lower is better)", + "chartId": "chart_output", + "highlightText": "1.1x less", + "grimoireHeight": 75.82519186689818, + "tailwindHeight": 85.0, + "grimoireValue": "5.05 MB", + "tailwindValue": "5.66 MB", + "grimoireRawValue": 5172.66, + "tailwindRawValue": 5798.54 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Processing Speed", + "chartTitle": "Processing Speed", + "chartSubtitle": "Number of utility classes processed per second (higher is better)", + "chartId": "chart_classes_per_second", + "highlightText": "5.4x faster", + "grimoireHeight": 85.0, + "tailwindHeight": 15.645194501014084, + "grimoireValue": "275604.86 classes/s", + "tailwindValue": "50728.14 classes/s", + "grimoireRawValue": 275604.86, + "tailwindRawValue": 50728.14 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Memory Efficiency", + "chartTitle": "Memory Efficiency", + "chartSubtitle": "Number of utility classes processed per MB of memory (higher is better)", + "chartId": "chart_memory_efficiency", + "highlightText": "1.8x more efficient", + "grimoireHeight": 85.0, + "tailwindHeight": 46.922939979654124, + "grimoireValue": "2358.83 classes/MB", + "tailwindValue": "1302.16 classes/MB", + "grimoireRawValue": 2358.83, + "tailwindRawValue": 1302.16 + } + ], + "metadata": { + "timestamp": 1766761118.166788, + "timestamp_human": "2025-12-26 15:58:38", + "system": { + "os": "Darwin 25.2.0", + "cpu": "arm", + "cores": "12 physical, 12 logical", + "memory": "32.0 GB" + } + } +} \ No newline at end of file diff --git a/benchmark/results/result_20251226_155901.json b/benchmark/results/result_20251226_155901.json new file mode 100644 index 0000000..e174028 --- /dev/null +++ b/benchmark/results/result_20251226_155901.json @@ -0,0 +1,137 @@ +{ + "system_info": { + "os": { + "name": "Darwin", + "version": "Darwin Kernel Version 25.2.0: Tue Nov 18 21:07:05 PST 2025; root:xnu-12377.61.12~1/RELEASE_ARM64_T6020", + "release": "25.2.0" + }, + "cpu": { + "name": "arm", + "cores_logical": 12, + "cores_physical": 12 + }, + "memory": { + "total_gb": 32.0 + }, + "psutil_version": "7.0.0", + "git": { + "sha": "bafd6c9b745de683c9007c3ec0d40e900d23867c", + "dirty": true + }, + "python_version": "3.14.2", + "timestamp": 1766761141.8890638, + "timestamp_human": "2025-12-26 15:59:01" + }, + "grimoire": { + "input": { + "unique_class_count": 400006, + "total_input_size_bytes": 49487280, + "file_count": 100000 + }, + "output": { + "file_count": 10, + "total_size_bytes": 5296800, + "total_size_kb": 5172.65625, + "avg_size_bytes": 529680.0, + "avg_size_kb": 517.265625 + }, + "process": { + "memory": { + "peak_bytes": 189775872, + "peak_mb": 180.984375, + "avg_bytes": 110906605.8989899, + "avg_mb": 105.76878156565657, + "measurement": "rss", + "rss_peak_bytes": 189775872, + "rss_peak_mb": 180.984375, + "rss_avg_bytes": 110906605.8989899, + "rss_avg_mb": 105.76878156565657, + "uss_peak_bytes": 100925440, + "uss_peak_mb": 96.25, + "uss_avg_bytes": 54324710.14141414, + "uss_avg_mb": 51.80808080808081, + "uss_is_complete": true, + "uss_partial_peak_bytes": 100925440, + "uss_partial_peak_mb": 96.25, + "uss_partial_avg_bytes": 54324710.14141414, + "uss_partial_avg_mb": 51.80808080808081, + "uss_coverage_avg": 0.99, + "uss_process_count_avg": 1, + "uss_process_count_max": 1, + "uss_available_count_avg": 0.99, + "uss_available_count_max": 1, + "std_dev_mb": 53.649223879144905 + }, + "cpu": { + "user_time": 0.924240524, + "system_time": 2.5149035829999997, + "total_time": 3.4391441069999997 + }, + "io": { + "read_bytes": 49487280, + "read_mb": 47.19474792480469, + "write_bytes": 5296800, + "write_mb": 5.051422119140625 + } + }, + "throughput": { + "build_time_seconds": 1.8126487731933594, + "classes_per_second": 220674.85213658126, + "memory_efficiency": 2210.1686955020286, + "bytes_processed_per_second": 27301085.975314356, + "bytes_generated_per_second": 2922132.560004209 + }, + "exit_code": 0, + "success": true, + "run": { + "executable": "../target/release/grimoire_css", + "argv": [ + "../target/release/grimoire_css", + "build" + ] + } + }, + "tailwind": { + "input": { + "unique_class_count": 400006, + "total_input_size_bytes": 49487280, + "file_count": 100000 + }, + "output": { + "file_count": 10, + "total_size_bytes": 5937710, + "total_size_kb": 5798.544921875, + "avg_size_bytes": 593771.0, + "avg_size_kb": 579.8544921875 + }, + "process": { + "memory": { + "peak_bytes": 324665344, + "peak_mb": 309.625, + "avg_bytes": 164938919.56363636, + "avg_mb": 157.29801136363636, + "std_dev_mb": 75.63229678798771 + }, + "cpu": { + "user_time": 8.83702242, + "system_time": 20.870727661000004, + "total_time": 29.707750081 + }, + "io": { + "read_bytes": 49487280, + "read_mb": 47.19474792480469, + "write_bytes": 5937710, + "write_mb": 5.662641525268555 + } + }, + "throughput": { + "build_time_seconds": 7.91130256652832, + "classes_per_second": 50561.33255380381, + "memory_efficiency": 1291.9047234557934, + "bytes_processed_per_second": 6255263.224209648, + "bytes_generated_per_second": 750535.0667691146 + }, + "exit_code": 0, + "success": true + } +} \ No newline at end of file diff --git a/benchmark/results/result_20251226_155901.txt b/benchmark/results/result_20251226_155901.txt new file mode 100644 index 0000000..08476b7 --- /dev/null +++ b/benchmark/results/result_20251226_155901.txt @@ -0,0 +1,123 @@ + + +================================================================================================================================================================ +GRIMOIRE PERFORMANCE BENCHMARK REPORT +================================================================================ +Generated: 2025-12-26 15:59:01 + +SYSTEM INFORMATION +-------------------------------------------------------------------------------- +OS: Darwin 25.2.0 +CPU: arm +Cores: 12 physical, 12 logical +Memory: 32.0 GB + +INPUT SUMMARY +-------------------------------------------------------------------------------- +Unique Utility Classes: 400006 +Total Input Size: 47.19 MB +Input HTML Files: 100000 + +PERFORMANCE METRICS +-------------------------------------------------------------------------------- +Build Time: 1.81 s +Processing Speed: 220674.85 classes/second + +MEMORY USAGE +-------------------------------------------------------------------------------- +Peak Memory: 180.98 MB +Average Memory: 105.77 MB +Peak RSS: 180.98 MB +Average RSS: 105.77 MB +Peak USS: 96.25 MB +Average USS: 51.81 MB +Primary Memory Metric: rss +Memory Efficiency: 2210.17 classes/MB +Memory Stability (Std Dev): 53.65 MB +Memory per Class: 474.43 bytes/class + +CPU USAGE +-------------------------------------------------------------------------------- +User CPU Time: 924.24 ms +System CPU Time: 2.51 s +Total CPU Time: 3.44 s + +I/O & OUTPUT METRICS +-------------------------------------------------------------------------------- +Total Read: 47.19 MB +Total Written: 5.05 MB +Output File Count: 10 +Output Size: 5.05 MB + +================================================================================ +TAILWIND PERFORMANCE BENCHMARK REPORT +================================================================================ +Generated: 2025-12-26 15:59:01 + +SYSTEM INFORMATION +-------------------------------------------------------------------------------- +OS: Darwin 25.2.0 +CPU: arm +Cores: 12 physical, 12 logical +Memory: 32.0 GB + +INPUT SUMMARY +-------------------------------------------------------------------------------- +Unique Utility Classes: 400006 +Total Input Size: 47.19 MB +Input HTML Files: 100000 + +PERFORMANCE METRICS +-------------------------------------------------------------------------------- +Build Time: 7.91 s +Processing Speed: 50561.33 classes/second + +MEMORY USAGE +-------------------------------------------------------------------------------- +Peak Memory: 309.62 MB +Average Memory: 157.30 MB +Memory Efficiency: 1291.90 classes/MB +Memory Stability (Std Dev): 75.63 MB +Memory per Class: 811.65 bytes/class + +CPU USAGE +-------------------------------------------------------------------------------- +User CPU Time: 8.84 s +System CPU Time: 20.87 s +Total CPU Time: 29.71 s + +I/O & OUTPUT METRICS +-------------------------------------------------------------------------------- +Total Read: 47.19 MB +Total Written: 5.66 MB +Output File Count: 10 +Output Size: 5.66 MB + +================================================================================ +CSS FRAMEWORKS PERFORMANCE COMPARISON +================================================================================ +Generated: 2025-12-26 15:59:01 + +SYSTEM INFORMATION +-------------------------------------------------------------------------------- +OS: Darwin 25.2.0 +CPU: arm +Cores: 12 physical, 12 logical +Memory: 32.0 GB + +PERFORMANCE COMPARISON +-------------------------------------------------------------------------------- +Metric | Grimoire CSS | Tailwind CSS | Difference | Ratio (G/T) +------------------------------------------------------------------------------------------------ +Build Time | 1.81 s | 7.91 s | 6.10 s | 4.36x +Classes/sec | 220674.85 | 50561.33 | 170113.52 | 4.36x +Peak Memory | 180.98 MB | 309.62 MB | 128.64 MB | 1.71x +Memory Efficiency | 2210.17 classes/MB | 1291.90 classes/MB | 918.26 classes/MB | 1.71x +Output Size | 5.05 MB | 5.66 MB | 625.89 KB | 1.12x + +Notes: +- Build Time: lower is better +- Classes/sec: higher is better +- Peak Memory: lower is better +- Memory Efficiency: higher is better +- Output Size: lower is better \ No newline at end of file diff --git a/benchmark/results/result_20251226_155901_pretty.json b/benchmark/results/result_20251226_155901_pretty.json new file mode 100644 index 0000000..5c3e979 --- /dev/null +++ b/benchmark/results/result_20251226_155901_pretty.json @@ -0,0 +1,118 @@ +{ + "charts": [ + { + "title": "Grimoire CSS vs Tailwind CSS - Build Time", + "chartTitle": "Build Time", + "chartSubtitle": "Total time taken to compile CSS (lower is better)", + "chartId": "chart_time", + "highlightText": "4.4x faster", + "grimoireHeight": 19.475319572949616, + "tailwindHeight": 85.0, + "grimoireValue": "1.81s", + "tailwindValue": "7.91s", + "grimoireRawValue": 1.81, + "tailwindRawValue": 7.91 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Peak Memory Usage", + "chartTitle": "Peak Memory Usage", + "chartSubtitle": "Maximum memory consumed during compilation (lower is better)", + "chartId": "chart_peak_memory", + "highlightText": "1.7x less", + "grimoireHeight": 49.68485062575696, + "tailwindHeight": 85.0, + "grimoireValue": "180.98 MB", + "tailwindValue": "309.62 MB", + "grimoireRawValue": 180.98, + "tailwindRawValue": 309.62 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Average Memory Usage", + "chartTitle": "Average Memory Usage", + "chartSubtitle": "Average memory consumed during compilation (lower is better)", + "chartId": "chart_avg_memory", + "highlightText": "1.5x less", + "grimoireHeight": 57.15486391177077, + "tailwindHeight": 85.0, + "grimoireValue": "105.77 MB", + "tailwindValue": "157.3 MB", + "grimoireRawValue": 105.77, + "tailwindRawValue": 157.3 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - CPU Usage (User Time)", + "chartTitle": "CPU Usage (User Time)", + "chartSubtitle": "CPU time spent in user mode during compilation (lower is better)", + "chartId": "chart_cpu_user", + "highlightText": "9.6x less", + "grimoireHeight": 8.88992251079974, + "tailwindHeight": 85.0, + "grimoireValue": "924.24ms", + "tailwindValue": "8.84s", + "grimoireRawValue": 0.92, + "tailwindRawValue": 8.84 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - CPU Usage (System Time)", + "chartTitle": "CPU Usage (System Time)", + "chartSubtitle": "CPU time spent in system mode during compilation (lower is better)", + "chartId": "chart_cpu_system", + "highlightText": "8.3x less", + "grimoireHeight": 10.24242221101157, + "tailwindHeight": 85.0, + "grimoireValue": "2.51s", + "tailwindValue": "20.87s", + "grimoireRawValue": 2.51, + "tailwindRawValue": 20.87 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Output Size", + "chartTitle": "Output Size", + "chartSubtitle": "Size of the generated CSS file (lower is better)", + "chartId": "chart_output", + "highlightText": "1.1x less", + "grimoireHeight": 75.82519186689818, + "tailwindHeight": 85.0, + "grimoireValue": "5.05 MB", + "tailwindValue": "5.66 MB", + "grimoireRawValue": 5172.66, + "tailwindRawValue": 5798.54 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Processing Speed", + "chartTitle": "Processing Speed", + "chartSubtitle": "Number of utility classes processed per second (higher is better)", + "chartId": "chart_classes_per_second", + "highlightText": "4.4x faster", + "grimoireHeight": 85.0, + "tailwindHeight": 19.475319572949616, + "grimoireValue": "220674.85 classes/s", + "tailwindValue": "50561.33 classes/s", + "grimoireRawValue": 220674.85, + "tailwindRawValue": 50561.33 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Memory Efficiency", + "chartTitle": "Memory Efficiency", + "chartSubtitle": "Number of utility classes processed per MB of memory (higher is better)", + "chartId": "chart_memory_efficiency", + "highlightText": "1.7x more efficient", + "grimoireHeight": 85.0, + "tailwindHeight": 49.68485062575697, + "grimoireValue": "2210.17 classes/MB", + "tailwindValue": "1291.90 classes/MB", + "grimoireRawValue": 2210.17, + "tailwindRawValue": 1291.9 + } + ], + "metadata": { + "timestamp": 1766761141.8890638, + "timestamp_human": "2025-12-26 15:59:01", + "system": { + "os": "Darwin 25.2.0", + "cpu": "arm", + "cores": "12 physical, 12 logical", + "memory": "32.0 GB" + } + } +} \ No newline at end of file diff --git a/benchmark/results/result_20251226_155926.json b/benchmark/results/result_20251226_155926.json new file mode 100644 index 0000000..b116051 --- /dev/null +++ b/benchmark/results/result_20251226_155926.json @@ -0,0 +1,137 @@ +{ + "system_info": { + "os": { + "name": "Darwin", + "version": "Darwin Kernel Version 25.2.0: Tue Nov 18 21:07:05 PST 2025; root:xnu-12377.61.12~1/RELEASE_ARM64_T6020", + "release": "25.2.0" + }, + "cpu": { + "name": "arm", + "cores_logical": 12, + "cores_physical": 12 + }, + "memory": { + "total_gb": 32.0 + }, + "psutil_version": "7.0.0", + "git": { + "sha": "bafd6c9b745de683c9007c3ec0d40e900d23867c", + "dirty": true + }, + "python_version": "3.14.2", + "timestamp": 1766761166.7450528, + "timestamp_human": "2025-12-26 15:59:26" + }, + "grimoire": { + "input": { + "unique_class_count": 400006, + "total_input_size_bytes": 49487280, + "file_count": 100000 + }, + "output": { + "file_count": 10, + "total_size_bytes": 5296800, + "total_size_kb": 5172.65625, + "avg_size_bytes": 529680.0, + "avg_size_kb": 517.265625 + }, + "process": { + "memory": { + "peak_bytes": 166019072, + "peak_mb": 158.328125, + "avg_bytes": 99309645.7721519, + "avg_mb": 94.7090585443038, + "measurement": "rss", + "rss_peak_bytes": 166019072, + "rss_peak_mb": 158.328125, + "rss_avg_bytes": 99309645.7721519, + "rss_avg_mb": 94.7090585443038, + "uss_peak_bytes": 138428416, + "uss_peak_mb": 132.015625, + "uss_avg_bytes": 74744637.56962025, + "uss_avg_mb": 71.2820411392405, + "uss_is_complete": true, + "uss_partial_peak_bytes": 138428416, + "uss_partial_peak_mb": 132.015625, + "uss_partial_avg_bytes": 74744637.56962025, + "uss_partial_avg_mb": 71.2820411392405, + "uss_coverage_avg": 1.0, + "uss_process_count_avg": 1, + "uss_process_count_max": 1, + "uss_available_count_avg": 1, + "uss_available_count_max": 1, + "std_dev_mb": 39.95781605477421 + }, + "cpu": { + "user_time": 0.835245733, + "system_time": 1.974512151, + "total_time": 2.809757884 + }, + "io": { + "read_bytes": 49487280, + "read_mb": 47.19474792480469, + "write_bytes": 5296800, + "write_mb": 5.051422119140625 + } + }, + "throughput": { + "build_time_seconds": 2.8290228843688965, + "classes_per_second": 141393.69540279772, + "memory_efficiency": 2526.4367906839043, + "bytes_processed_per_second": 17492711.09591597, + "bytes_generated_per_second": 1872307.2299153986 + }, + "exit_code": 0, + "success": true, + "run": { + "executable": "../target/release/grimoire_css", + "argv": [ + "../target/release/grimoire_css", + "build" + ] + } + }, + "tailwind": { + "input": { + "unique_class_count": 400006, + "total_input_size_bytes": 49487280, + "file_count": 100000 + }, + "output": { + "file_count": 10, + "total_size_bytes": 5937710, + "total_size_kb": 5798.544921875, + "avg_size_bytes": 593771.0, + "avg_size_kb": 579.8544921875 + }, + "process": { + "memory": { + "peak_bytes": 317325312, + "peak_mb": 302.625, + "avg_bytes": 165314706.2857143, + "avg_mb": 157.65638950892858, + "std_dev_mb": 75.3255305454726 + }, + "cpu": { + "user_time": 8.904139656, + "system_time": 21.150147192, + "total_time": 30.054286848 + }, + "io": { + "read_bytes": 49487280, + "read_mb": 47.19474792480469, + "write_bytes": 5937710, + "write_mb": 5.662641525268555 + } + }, + "throughput": { + "build_time_seconds": 8.003226041793823, + "classes_per_second": 49980.59506393045, + "memory_efficiency": 1321.7876910367618, + "bytes_processed_per_second": 6183416.504990785, + "bytes_generated_per_second": 741914.5690740901 + }, + "exit_code": 0, + "success": true + } +} \ No newline at end of file diff --git a/benchmark/results/result_20251226_155926.txt b/benchmark/results/result_20251226_155926.txt new file mode 100644 index 0000000..649923c --- /dev/null +++ b/benchmark/results/result_20251226_155926.txt @@ -0,0 +1,123 @@ + + +================================================================================================================================================================ +GRIMOIRE PERFORMANCE BENCHMARK REPORT +================================================================================ +Generated: 2025-12-26 15:59:26 + +SYSTEM INFORMATION +-------------------------------------------------------------------------------- +OS: Darwin 25.2.0 +CPU: arm +Cores: 12 physical, 12 logical +Memory: 32.0 GB + +INPUT SUMMARY +-------------------------------------------------------------------------------- +Unique Utility Classes: 400006 +Total Input Size: 47.19 MB +Input HTML Files: 100000 + +PERFORMANCE METRICS +-------------------------------------------------------------------------------- +Build Time: 2.83 s +Processing Speed: 141393.70 classes/second + +MEMORY USAGE +-------------------------------------------------------------------------------- +Peak Memory: 158.33 MB +Average Memory: 94.71 MB +Peak RSS: 158.33 MB +Average RSS: 94.71 MB +Peak USS: 132.02 MB +Average USS: 71.28 MB +Primary Memory Metric: rss +Memory Efficiency: 2526.44 classes/MB +Memory Stability (Std Dev): 39.96 MB +Memory per Class: 415.04 bytes/class + +CPU USAGE +-------------------------------------------------------------------------------- +User CPU Time: 835.25 ms +System CPU Time: 1.97 s +Total CPU Time: 2.81 s + +I/O & OUTPUT METRICS +-------------------------------------------------------------------------------- +Total Read: 47.19 MB +Total Written: 5.05 MB +Output File Count: 10 +Output Size: 5.05 MB + +================================================================================ +TAILWIND PERFORMANCE BENCHMARK REPORT +================================================================================ +Generated: 2025-12-26 15:59:26 + +SYSTEM INFORMATION +-------------------------------------------------------------------------------- +OS: Darwin 25.2.0 +CPU: arm +Cores: 12 physical, 12 logical +Memory: 32.0 GB + +INPUT SUMMARY +-------------------------------------------------------------------------------- +Unique Utility Classes: 400006 +Total Input Size: 47.19 MB +Input HTML Files: 100000 + +PERFORMANCE METRICS +-------------------------------------------------------------------------------- +Build Time: 8.00 s +Processing Speed: 49980.60 classes/second + +MEMORY USAGE +-------------------------------------------------------------------------------- +Peak Memory: 302.62 MB +Average Memory: 157.66 MB +Memory Efficiency: 1321.79 classes/MB +Memory Stability (Std Dev): 75.33 MB +Memory per Class: 793.30 bytes/class + +CPU USAGE +-------------------------------------------------------------------------------- +User CPU Time: 8.90 s +System CPU Time: 21.15 s +Total CPU Time: 30.05 s + +I/O & OUTPUT METRICS +-------------------------------------------------------------------------------- +Total Read: 47.19 MB +Total Written: 5.66 MB +Output File Count: 10 +Output Size: 5.66 MB + +================================================================================ +CSS FRAMEWORKS PERFORMANCE COMPARISON +================================================================================ +Generated: 2025-12-26 15:59:26 + +SYSTEM INFORMATION +-------------------------------------------------------------------------------- +OS: Darwin 25.2.0 +CPU: arm +Cores: 12 physical, 12 logical +Memory: 32.0 GB + +PERFORMANCE COMPARISON +-------------------------------------------------------------------------------- +Metric | Grimoire CSS | Tailwind CSS | Difference | Ratio (G/T) +------------------------------------------------------------------------------------------------- +Build Time | 2.83 s | 8.00 s | 5.17 s | 2.83x +Classes/sec | 141393.70 | 49980.60 | 91413.10 | 2.83x +Peak Memory | 158.33 MB | 302.62 MB | 144.30 MB | 1.91x +Memory Efficiency | 2526.44 classes/MB | 1321.79 classes/MB | 1204.65 classes/MB | 1.91x +Output Size | 5.05 MB | 5.66 MB | 625.89 KB | 1.12x + +Notes: +- Build Time: lower is better +- Classes/sec: higher is better +- Peak Memory: lower is better +- Memory Efficiency: higher is better +- Output Size: lower is better \ No newline at end of file diff --git a/benchmark/results/result_20251226_155926_pretty.json b/benchmark/results/result_20251226_155926_pretty.json new file mode 100644 index 0000000..9681650 --- /dev/null +++ b/benchmark/results/result_20251226_155926_pretty.json @@ -0,0 +1,118 @@ +{ + "charts": [ + { + "title": "Grimoire CSS vs Tailwind CSS - Build Time", + "chartTitle": "Build Time", + "chartSubtitle": "Total time taken to compile CSS (lower is better)", + "chartId": "chart_time", + "highlightText": "2.8x faster", + "grimoireHeight": 30.04625183839722, + "tailwindHeight": 85.0, + "grimoireValue": "2.83s", + "tailwindValue": "8.00s", + "grimoireRawValue": 2.83, + "tailwindRawValue": 8.0 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Peak Memory Usage", + "chartTitle": "Peak Memory Usage", + "chartSubtitle": "Maximum memory consumed during compilation (lower is better)", + "chartId": "chart_peak_memory", + "highlightText": "1.9x less", + "grimoireHeight": 44.47051838083437, + "tailwindHeight": 85.0, + "grimoireValue": "158.33 MB", + "tailwindValue": "302.62 MB", + "grimoireRawValue": 158.33, + "tailwindRawValue": 302.62 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Average Memory Usage", + "chartTitle": "Average Memory Usage", + "chartSubtitle": "Average memory consumed during compilation (lower is better)", + "chartId": "chart_avg_memory", + "highlightText": "1.7x less", + "grimoireHeight": 51.062123148582636, + "tailwindHeight": 85.0, + "grimoireValue": "94.71 MB", + "tailwindValue": "157.66 MB", + "grimoireRawValue": 94.71, + "tailwindRawValue": 157.66 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - CPU Usage (User Time)", + "chartTitle": "CPU Usage (User Time)", + "chartSubtitle": "CPU time spent in user mode during compilation (lower is better)", + "chartId": "chart_cpu_user", + "highlightText": "10.7x less", + "grimoireHeight": 7.973357342521, + "tailwindHeight": 85.0, + "grimoireValue": "835.25ms", + "tailwindValue": "8.90s", + "grimoireRawValue": 0.84, + "tailwindRawValue": 8.9 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - CPU Usage (System Time)", + "chartTitle": "CPU Usage (System Time)", + "chartSubtitle": "CPU time spent in system mode during compilation (lower is better)", + "chartId": "chart_cpu_system", + "highlightText": "10.7x less", + "grimoireHeight": 7.935336397965245, + "tailwindHeight": 85.0, + "grimoireValue": "1.97s", + "tailwindValue": "21.15s", + "grimoireRawValue": 1.97, + "tailwindRawValue": 21.15 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Output Size", + "chartTitle": "Output Size", + "chartSubtitle": "Size of the generated CSS file (lower is better)", + "chartId": "chart_output", + "highlightText": "1.1x less", + "grimoireHeight": 75.82519186689818, + "tailwindHeight": 85.0, + "grimoireValue": "5.05 MB", + "tailwindValue": "5.66 MB", + "grimoireRawValue": 5172.66, + "tailwindRawValue": 5798.54 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Processing Speed", + "chartTitle": "Processing Speed", + "chartSubtitle": "Number of utility classes processed per second (higher is better)", + "chartId": "chart_classes_per_second", + "highlightText": "2.8x faster", + "grimoireHeight": 85.0, + "tailwindHeight": 30.04625183839722, + "grimoireValue": "141393.70 classes/s", + "tailwindValue": "49980.60 classes/s", + "grimoireRawValue": 141393.7, + "tailwindRawValue": 49980.6 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Memory Efficiency", + "chartTitle": "Memory Efficiency", + "chartSubtitle": "Number of utility classes processed per MB of memory (higher is better)", + "chartId": "chart_memory_efficiency", + "highlightText": "1.9x more efficient", + "grimoireHeight": 85.0, + "tailwindHeight": 44.47051838083437, + "grimoireValue": "2526.44 classes/MB", + "tailwindValue": "1321.79 classes/MB", + "grimoireRawValue": 2526.44, + "tailwindRawValue": 1321.79 + } + ], + "metadata": { + "timestamp": 1766761166.7450528, + "timestamp_human": "2025-12-26 15:59:26", + "system": { + "os": "Darwin 25.2.0", + "cpu": "arm", + "cores": "12 physical, 12 logical", + "memory": "32.0 GB" + } + } +} \ No newline at end of file diff --git a/src/commands/shorten.rs b/src/commands/shorten.rs index 85020f2..af0f1f4 100644 --- a/src/commands/shorten.rs +++ b/src/commands/shorten.rs @@ -43,16 +43,11 @@ pub fn shorten(current_dir: &Path) -> Result<(), GrimoireCssError> { let mut new_parts = Vec::with_capacity(parts.len()); let mut changed = false; for part in parts { - if let Ok(Some(spell)) = Spell::new( - part, - &config.shared_spells, - &config.scrolls, - (0, 0), - None, - None, - ) { - if let Some(short) = get_shorten_component(&spell.component) { - let short_part = part.replacen(&spell.component, short, 1); + if let Ok(Some(spell)) = + Spell::new(part, &config.shared_spells, &config.scrolls, (0, 0), None) + { + if let Some(short) = get_shorten_component(spell.component()) { + let short_part = part.replacen(spell.component(), short, 1); if short_part != part { changed = true; } @@ -79,10 +74,9 @@ pub fn shorten(current_dir: &Path) -> Result<(), GrimoireCssError> { &config.scrolls, (0, 0), None, - None, - ) && let Some(short) = get_shorten_component(&spell.component) + ) && let Some(short) = get_shorten_component(spell.component()) { - let short_spell = raw_spell.replacen(&spell.component, short, 1); + let short_spell = raw_spell.replacen(spell.component(), short, 1); if raw_spell != &short_spell && new_content.contains(raw_spell) { let count = new_content.matches(raw_spell).count(); new_content = new_content.replace(raw_spell, &short_spell); diff --git a/src/core/css_builder/css_builder_base.rs b/src/core/css_builder/css_builder_base.rs index 36dc0f7..2bb6333 100644 --- a/src/core/css_builder/css_builder_base.rs +++ b/src/core/css_builder/css_builder_base.rs @@ -5,6 +5,21 @@ use crate::core::{CssOptimizer, GrimoireCssError, css_generator::CssGenerator, spell::Spell}; use std::collections::HashMap; +#[derive(Debug, Clone, Copy)] +struct PieceRange { + start: usize, + end: usize, + spell_index: usize, +} + +#[derive(Debug, Clone)] +struct MediaEntry { + min_width: Option, + start: usize, + end: usize, + spell_index: usize, +} + /// Core CSS builder that handles spell compilation and optimization pub struct CssBuilder<'a> { css_generator: CssGenerator<'a>, @@ -49,22 +64,105 @@ impl<'a> CssBuilder<'a> { /// # Errors /// /// Returns a `GrimoireCSSError` if CSS generation fails. + #[allow(dead_code)] pub fn combine_spells_to_css(&self, spells: &[Spell]) -> Result, GrimoireCssError> { - let mut base_rules: Vec<(String, usize)> = Vec::new(); - let mut media_queries: Vec<(String, usize)> = Vec::new(); + let (raw_css, pieces) = self.build_joined_css_and_pieces(spells)?; + self.validate_or_isolate(spells, &raw_css, &pieces)?; + Ok(pieces + .iter() + .map(|p| raw_css[p.start..p.end].to_string()) + .collect()) + } + + /// Memory-efficient variant that returns a single joined CSS string. + pub fn combine_spells_to_css_string( + &self, + spells: &[Spell], + ) -> Result { + let (raw_css, pieces) = self.build_joined_css_and_pieces(spells)?; + self.validate_or_isolate(spells, &raw_css, &pieces)?; + Ok(raw_css) + } + + /// Builds and returns optimized CSS in one step. + /// + /// This avoids the common `validate()` then `optimize()` double-parse on the success path. + /// On failure, it still performs rule isolation to produce a precise, spell-linked error. + pub fn combine_spells_to_optimized_css_string( + &self, + spells: &[Spell], + ) -> Result { + let (raw_css, pieces) = self.build_joined_css_and_pieces(spells)?; + + match self.optimizer.optimize(&raw_css) { + Ok(css) => Ok(css), + Err(optimize_err) => match self.validate_or_isolate(spells, &raw_css, &pieces) { + // Optimization may fail even if parsing succeeds (e.g. minify stage). + Ok(()) => Err(optimize_err), + Err(isolated_err) => Err(isolated_err), + }, + } + } + + /// Optimizes and minifies CSS. + /// + /// # Arguments + /// + /// * `raw_css` - Raw CSS string to optimize. + /// + /// # Returns + /// + /// Optimized and minified CSS string. + pub fn optimize_css(&self, raw_css: &str) -> Result { + self.optimizer.optimize(raw_css) + } + + fn create_compile_error(&self, spell: &Spell, error: GrimoireCssError) -> GrimoireCssError { + GrimoireCssError::CompileError { + message: format!("Invalid CSS generated: {}", error), + span: spell.span, + label: "This spell generated invalid CSS".to_string(), + help: Some( + "This usually means the spell value is not valid CSS after Grimoire transformations.\n\ +If you intended spaces inside a value, encode them as '_' (underscores)." + .to_string(), + ), + source_file: spell.source.clone(), + } + } + + fn build_joined_css_and_pieces( + &self, + spells: &[Spell], + ) -> Result<(String, Vec), GrimoireCssError> { + use once_cell::sync::Lazy; + + static MIN_WIDTH_RE: Lazy = + Lazy::new(|| regex::Regex::new(r"min-width:\s*(\\d+)").unwrap()); + + fn extract_min_width(re: ®ex::Regex, s: &str) -> Option { + re.captures(s) + .and_then(|cap| cap.get(1)) + .and_then(|m| m.as_str().parse::().ok()) + } + + let mut base_css = String::new(); + let mut base_pieces: Vec = Vec::new(); + + let mut media_css = String::new(); + let mut media_entries: Vec = Vec::new(); for (spell_index, spell) in spells.iter().enumerate() { match &spell.scroll_spells { Some(ss) if !ss.is_empty() => { - let mut local_scroll_css_vec = Vec::new(); - let mut local_scroll_additional_css_vec = Vec::new(); + let mut combined_scroll_css = String::new(); for s in ss { if let Some(css) = self.css_generator.generate_css(s)? { let class_name = self.css_generator.generate_css_class_name( &spell.raw_spell, - &spell.effects, - &spell.focus, + spell.effects(), + spell.focus(), spell.with_template, )?; @@ -74,154 +172,184 @@ impl<'a> CssBuilder<'a> { &css.0, ); - local_scroll_css_vec.push(updated_css); + combined_scroll_css.push_str(&updated_css); if let Some(additional_css) = css.2 { - local_scroll_additional_css_vec.push(additional_css); + let start = base_css.len(); + base_css.push_str(&additional_css); + let end = base_css.len(); + base_pieces.push(PieceRange { + start, + end, + spell_index, + }); } } } - let combined_css = local_scroll_css_vec.join(""); - let wrapped_css = if spell.area.is_empty() { - combined_css + let wrapped_css = if spell.area().is_empty() { + combined_scroll_css } else { self.css_generator - .wrap_base_css_with_media_query(&spell.area, &combined_css) + .wrap_base_css_with_media_query(spell.area(), &combined_scroll_css) }; + if wrapped_css.trim_start().starts_with("@media") { - media_queries.push((wrapped_css, spell_index)); + let start = media_css.len(); + media_css.push_str(&wrapped_css); + let end = media_css.len(); + media_entries.push(MediaEntry { + min_width: extract_min_width(&MIN_WIDTH_RE, &wrapped_css), + start, + end, + spell_index, + }); } else { - base_rules.push((wrapped_css, spell_index)); - } - - for add_css in local_scroll_additional_css_vec { - base_rules.push((add_css, spell_index)); + let start = base_css.len(); + base_css.push_str(&wrapped_css); + let end = base_css.len(); + base_pieces.push(PieceRange { + start, + end, + spell_index, + }); } } _ => { if let Some(css) = self.css_generator.generate_css(spell)? { if css.0.trim_start().starts_with("@media") { - media_queries.push((css.0, spell_index)); + let start = media_css.len(); + media_css.push_str(&css.0); + let end = media_css.len(); + media_entries.push(MediaEntry { + min_width: extract_min_width(&MIN_WIDTH_RE, &css.0), + start, + end, + spell_index, + }); } else { - base_rules.push((css.0, spell_index)); + let start = base_css.len(); + base_css.push_str(&css.0); + let end = base_css.len(); + base_pieces.push(PieceRange { + start, + end, + spell_index, + }); } if let Some(additional_css) = css.2 { - base_rules.push((additional_css, spell_index)); + let start = base_css.len(); + base_css.push_str(&additional_css); + let end = base_css.len(); + base_pieces.push(PieceRange { + start, + end, + spell_index, + }); } } } } } - media_queries.sort_by(|a, b| { - fn extract_min_width(s: &str) -> Option { - let re = regex::Regex::new(r"min-width:\s*(\\d+)").unwrap(); - re.captures(s) - .and_then(|cap| cap.get(1)) - .and_then(|m| m.as_str().parse::().ok()) - } - match (extract_min_width(&a.0), extract_min_width(&b.0)) { - (Some(aw), Some(bw)) => aw.cmp(&bw), - (Some(_), None) => std::cmp::Ordering::Less, - (None, Some(_)) => std::cmp::Ordering::Greater, - (None, None) => a.0.cmp(&b.0), + // Sort media queries by min-width, then by the text itself (stable deterministic output). + media_entries.sort_by(|a, b| match (a.min_width, b.min_width) { + (Some(aw), Some(bw)) => aw.cmp(&bw), + (Some(_), None) => std::cmp::Ordering::Less, + (None, Some(_)) => std::cmp::Ordering::Greater, + (None, None) => { + let aslice = &media_css[a.start..a.end]; + let bslice = &media_css[b.start..b.end]; + aslice.cmp(bslice) } }); - base_rules.extend(media_queries); - // Validate the combined output once (fast path). - if let Err(e) = self.validate_joined_css(&base_rules) { - if let Some((spell_index, rule_error)) = self.find_first_invalid_rule(&base_rules) { - return Err(self.create_compile_error(&spells[spell_index], rule_error)); - } + // Final output: base rules, then sorted media queries. + let mut raw_css = base_css; + let mut pieces = base_pieces; - // Fallback: no rule isolated (should be rare), attach to first spell if available. - if let Some(first) = spells.first() { - return Err(self.create_compile_error(first, e)); - } - return Err(e); - } - - Ok(base_rules.into_iter().map(|(css, _)| css).collect()) - } + raw_css.reserve(media_css.len()); - /// Optimizes and minifies CSS. - /// - /// # Arguments - /// - /// * `raw_css` - Raw CSS string to optimize. - /// - /// # Returns - /// - /// Optimized and minified CSS string. - pub fn optimize_css(&self, raw_css: &str) -> Result { - self.optimizer.optimize(raw_css) - } - - fn create_compile_error(&self, spell: &Spell, error: GrimoireCssError) -> GrimoireCssError { - GrimoireCssError::CompileError { - message: format!("Invalid CSS generated: {}", error), - span: spell.span, - label: "This spell generated invalid CSS".to_string(), - help: Some( - "This usually means the spell value is not valid CSS after Grimoire transformations.\n\ -If you intended spaces inside a value, encode them as '_' (underscores)." - .to_string(), - ), - source_file: spell.source.clone(), + for m in media_entries { + let start = raw_css.len(); + raw_css.push_str(&media_css[m.start..m.end]); + let end = raw_css.len(); + pieces.push(PieceRange { + start, + end, + spell_index: m.spell_index, + }); } - } - fn validate_joined_css(&self, rules: &[(String, usize)]) -> Result<(), GrimoireCssError> { - if rules.is_empty() { - return Ok(()); - } - let mut joined = String::new(); - for (css, _) in rules { - joined.push_str(css); - } - self.optimizer.validate(&joined) + Ok((raw_css, pieces)) } - fn validate_rules_slice(&self, rules: &[(String, usize)]) -> Result<(), GrimoireCssError> { - if rules.is_empty() { + fn validate_or_isolate( + &self, + spells: &[Spell], + raw_css: &str, + pieces: &[PieceRange], + ) -> Result<(), GrimoireCssError> { + if pieces.is_empty() { return Ok(()); } - let mut joined = String::new(); - for (css, _) in rules { - joined.push_str(css); + + if let Err(e) = self.optimizer.validate(raw_css) { + if let Some((spell_index, rule_error)) = self.find_first_invalid_piece(raw_css, pieces) + { + return Err(self.create_compile_error(&spells[spell_index], rule_error)); + } + + if let Some(first) = spells.first() { + return Err(self.create_compile_error(first, e)); + } + return Err(e); } - self.optimizer.validate(&joined) + + Ok(()) } - /// Returns the first invalid rule in source order (by spell index), if any. - fn find_first_invalid_rule( + /// Returns the first invalid piece in source order (by spell index), if any. + fn find_first_invalid_piece( &self, - rules: &[(String, usize)], + raw_css: &str, + pieces: &[PieceRange], ) -> Option<(usize, GrimoireCssError)> { - if rules.is_empty() { + if pieces.is_empty() { return None; } - // If the entire set validates, nothing to isolate. - if self.validate_rules_slice(rules).is_ok() { + // If the entire slice validates, nothing to isolate. + let full_start = pieces.first()?.start; + let full_end = pieces.last()?.end; + if self + .optimizer + .validate(&raw_css[full_start..full_end]) + .is_ok() + { return None; } - if rules.len() == 1 { - let rule_error = self.optimizer.validate(&rules[0].0).err()?; - return Some((rules[0].1, rule_error)); + if pieces.len() == 1 { + let p = pieces[0]; + let rule_error = self.optimizer.validate(&raw_css[p.start..p.end]).err()?; + return Some((p.spell_index, rule_error)); } - let mid = rules.len() / 2; - let (left, right) = rules.split_at(mid); + let mid = pieces.len() / 2; + let (left, right) = pieces.split_at(mid); - if self.validate_rules_slice(left).is_err() { - return self.find_first_invalid_rule(left); + let left_start = left.first()?.start; + let left_end = left.last()?.end; + if self + .optimizer + .validate(&raw_css[left_start..left_end]) + .is_err() + { + return self.find_first_invalid_piece(raw_css, left); } - self.find_first_invalid_rule(right) + self.find_first_invalid_piece(raw_css, right) } } diff --git a/src/core/css_builder/css_builder_fs.rs b/src/core/css_builder/css_builder_fs.rs index 5af1661..2e4942c 100644 --- a/src/core/css_builder/css_builder_fs.rs +++ b/src/core/css_builder/css_builder_fs.rs @@ -13,26 +13,29 @@ use crate::{ buffer::add_message, core::{ ConfigFs, ConfigFsCssCustomProperties, CssOptimizer, GrimoireCssError, - build_info::BuildInfo, file_tracker::FileTracker, parser::ParserFs, spell::Spell, - source_file::SourceFile, + build_info::BuildInfo, file_tracker::FileTracker, parser::ParserFs, + source_file::SourceFile, spell::Spell, }, }; use regex::Regex; use std::{ collections::HashSet, - fs, + env, fs, path::{Path, PathBuf}, sync::Arc, + thread, }; use super::CssBuilder; +type CriticalCssEntries = Vec<(PathBuf, Arc)>; +type CriticalCssResult = Option; + /// Manages the process of compiling and building CSS files with filesystem persistence. pub struct CssBuilderFs<'a> { css_builder: CssBuilder<'a>, config: &'a ConfigFs, current_dir: &'a Path, - parser: ParserFs, inline_css_regex: Regex, } @@ -54,14 +57,12 @@ impl<'a> CssBuilderFs<'a> { optimizer: &'a O, ) -> Result { let css_builder = CssBuilder::new(optimizer, &config.variables, &config.custom_animations)?; - let parser = ParserFs::new(current_dir); let inline_css_regex = Regex::new(r#"(?s)"#)?; Ok(Self { css_builder, config, current_dir, - parser, inline_css_regex, }) } @@ -74,95 +75,80 @@ impl<'a> CssBuilderFs<'a> { /// /// Returns a `GrimoireCSSError` if any step in the build process fails. pub fn build(&mut self) -> Result<(), GrimoireCssError> { - let mut project_build_info = Vec::new(); - - for project in &self.config.projects { - let project_output_dir_path = project - .output_dir_path - .as_deref() - .map(|d| self.current_dir.join(d)) - .unwrap_or_else(|| self.current_dir.join("grimoire/dist")); - - if let Some(single_output_file_name) = &project.single_output_file_name { - let parsing_results = self - .parser - .collect_classes_single_output(&project.input_paths)?; - let bundle_output_full_path = project_output_dir_path.join(single_output_file_name); - - let mut all_spells = Vec::new(); - let mut seen_spells = std::collections::HashSet::new(); - - for (file_path, content, classes) in parsing_results { - let source = Arc::new(SourceFile::new( - Some(file_path.clone()), - file_path.to_string_lossy().to_string(), - content, - )); - let spells = Spell::generate_spells_from_classes( - classes, - &self.config.shared_spells, - &self.config.scrolls, - Some(file_path), - Some(source), - )?; + let lock_enabled = self.config.lock.unwrap_or(false); + + let jobs = Self::jobs_from_env()?; + + // Only collect output paths when we actually need them for file tracking. + let mut compiled_project_paths: Option> = lock_enabled.then(Vec::new); + + if jobs <= 1 || self.config.projects.len() <= 1 { + for project in &self.config.projects { + let outputs = self.build_project(project)?; + if let Some(paths) = &mut compiled_project_paths { + paths.extend(outputs); + } + } + } else { + let mut all_outputs: Vec = Vec::new(); + let this: &CssBuilderFs<'a> = &*self; + + // NOTE: Parallelism is intentionally limited to project-level isolation. Each project + // builds its own parser/builder instances to avoid shared mutable state. + thread::scope(|scope| { + let projects = &self.config.projects; + let chunk_size = projects.len().div_ceil(jobs); + let mut handles = Vec::new(); + + for chunk in projects.chunks(chunk_size) { + handles.push(scope.spawn(move || { + let mut outputs = Vec::new(); + for project in chunk { + outputs.extend(this.build_project(project)?); + } + Ok::<_, GrimoireCssError>(outputs) + })); + } - for spell in spells { - if seen_spells.insert(spell.clone()) { - all_spells.push(spell); + for h in handles { + match h.join() { + Ok(Ok(outputs)) => all_outputs.extend(outputs), + Ok(Err(e)) => return Err(e), + Err(_) => { + return Err(GrimoireCssError::InvalidInput( + "Project build thread panicked".to_string(), + )); } } } - project_build_info.push(BuildInfo { - file_path: bundle_output_full_path, - spells: all_spells, - }); - } else { - let parsing_results = self.parser.collect_classes_multiple_output( - &project.input_paths, - &project_output_dir_path, - )?; - - for (output_file_path, source_path, content, classes) in parsing_results { - let source = Arc::new(SourceFile::new( - Some(source_path.clone()), - source_path.to_string_lossy().to_string(), - content, - )); - let spells = Spell::generate_spells_from_classes( - classes, - &self.config.shared_spells, - &self.config.scrolls, - Some(source_path), - Some(source), - )?; + Ok(()) + })?; - project_build_info.push(BuildInfo { - file_path: output_file_path, - spells, - }); - } + if let Some(paths) = &mut compiled_project_paths { + paths.extend(all_outputs); } } - - let compiled_css: Vec<(PathBuf, String)> = self.compile_css(&project_build_info)?; let compiled_shared_css: Option> = self.compile_shared_css()?; - let compiled_critical_css: Option> = self.compile_critical_css()?; - - Self::write_compiled_css(&compiled_css)?; + let compiled_critical_css: CriticalCssResult = self.compile_critical_css()?; if let Some(compiled_shared_css) = &compiled_shared_css { Self::write_compiled_css(compiled_shared_css)?; } // Track file changes if locking is enabled - if self.config.lock.unwrap_or(false) { - let all_compiled_paths = compiled_css.iter().map(|(path, _)| path.as_path()).chain( - compiled_shared_css - .as_ref() - .into_iter() - .flat_map(|css| css.iter().map(|(path, _)| path.as_path())), - ); + if lock_enabled { + let all_compiled_paths = compiled_project_paths + .as_ref() + .expect("compiled_project_paths must be collected when lock is enabled") + .iter() + .map(|p| p.as_path()) + .chain( + compiled_shared_css + .as_ref() + .into_iter() + .flat_map(|css| css.iter().map(|(path, _)| path.as_path())), + ); FileTracker::track(self.current_dir, all_compiled_paths)?; } @@ -187,6 +173,7 @@ impl<'a> CssBuilderFs<'a> { /// # Errors /// /// Returns a `GrimoireCSSError` if spell assembly or CSS optimization fails. + #[allow(dead_code)] fn compile_css( &self, project_build_info: &[BuildInfo], @@ -194,14 +181,9 @@ impl<'a> CssBuilderFs<'a> { let compiled_css: Result, GrimoireCssError> = project_build_info .iter() .map(|build_info| { - let assembled_spells = - self.css_builder.combine_spells_to_css(&build_info.spells)?; - let raw_css = if assembled_spells.len() == 1 { - assembled_spells[0].clone() - } else { - assembled_spells.concat() - }; - let css = self.css_builder.optimize_css(&raw_css)?; + let css = self + .css_builder + .combine_spells_to_optimized_css_string(&build_info.spells)?; Ok((build_info.file_path.clone(), css)) }) .collect(); @@ -293,9 +275,9 @@ impl<'a> CssBuilderFs<'a> { /// # Errors /// /// Returns a `GrimoireCSSError` if CSS composition or optimization fails. - fn compile_critical_css(&self) -> Result>, GrimoireCssError> { + fn compile_critical_css(&self) -> Result { self.config.critical.as_ref().map_or(Ok(None), |critical| { - let mut compiled_critical_css = Vec::new(); + let mut compiled_critical_css: CriticalCssEntries = Vec::new(); for critical_item in critical { if critical_item.file_to_inline_paths.is_empty() { @@ -317,11 +299,12 @@ impl<'a> CssBuilderFs<'a> { } if !composed_css.is_empty() { - let optimized_css = self.css_builder.optimize_css(&composed_css)?; + let optimized_css: Arc = + Arc::from(self.css_builder.optimize_css(&composed_css)?); for path_to_inline in &critical_item.file_to_inline_paths { compiled_critical_css - .push((PathBuf::from(&path_to_inline), optimized_css.clone())); + .push((PathBuf::from(&path_to_inline), Arc::clone(&optimized_css))); } } } @@ -377,7 +360,7 @@ impl<'a> CssBuilderFs<'a> { ) } - /// Composes additional CSS from shared styles. + /// Composes additional (raw, unoptimized) CSS from shared styles. /// /// # Arguments /// @@ -385,7 +368,7 @@ impl<'a> CssBuilderFs<'a> { /// /// # Returns /// - /// Composed and optimized CSS string. + /// Composed (raw) CSS string. /// /// # Errors /// @@ -415,20 +398,21 @@ impl<'a> CssBuilderFs<'a> { &self.config.scrolls, (0, 0), None, - None, )? { spells.push(spell); } } - let assembled_spells = self.css_builder.combine_spells_to_css(&spells)?; - let mut raw_css = assembled_spells.join(""); + let mut raw_css = self.css_builder.combine_spells_to_css_string(&spells)?; if !files_content.is_empty() { - raw_css.push_str(&files_content.join("")); + for contents in files_content { + raw_css.push_str(&contents); + } } - self.css_builder.optimize_css(&raw_css) + // Important: callers are responsible for running optimization exactly once. + Ok(raw_css) } /// Injects critical CSS into HTML files. @@ -442,11 +426,11 @@ impl<'a> CssBuilderFs<'a> { /// Returns a `GrimoireCSSError` if reading or writing HTML files fails. fn inject_critical_css_into_html( &self, - inline_shared_css: &[(PathBuf, String)], + inline_shared_css: &[(PathBuf, Arc)], ) -> Result<(), GrimoireCssError> { for (file_path, css) in inline_shared_css { let path = self.current_dir.join(file_path); - self.embed_critical_css(&path, css)?; + self.embed_critical_css(&path, css.as_ref())?; } Ok(()) @@ -485,11 +469,120 @@ impl<'a> CssBuilderFs<'a> { fs::write(html_file_path, updated_html_content)?; Ok(()) } + + fn build_project( + &self, + project: &'a crate::core::ConfigFsProject, + ) -> Result, GrimoireCssError> { + let project_output_dir_path = project + .output_dir_path + .as_deref() + .map(|d| self.current_dir.join(d)) + .unwrap_or_else(|| self.current_dir.join("grimoire/dist")); + + let parser = ParserFs::new(self.current_dir); + + let mut outputs = Vec::new(); + + if let Some(single_output_file_name) = &project.single_output_file_name { + let parsing_results = parser.collect_classes_single_output(&project.input_paths)?; + let bundle_output_full_path = project_output_dir_path.join(single_output_file_name); + + let mut all_spells = Vec::new(); + for (file_path, classes) in parsing_results { + let source = Arc::new(SourceFile::new_path_only( + Some(file_path.clone()), + file_path.to_string_lossy().to_string(), + )); + let spells = Spell::generate_spells_from_classes( + classes, + &self.config.shared_spells, + &self.config.scrolls, + Some(source), + )?; + + // `ParserFs::collect_classes_single_output` already deduplicates class tokens. + all_spells.extend(spells); + } + + let css = self + .css_builder + .combine_spells_to_optimized_css_string(&all_spells)?; + + Self::create_output_directory_if_needed(&bundle_output_full_path)?; + fs::write(&bundle_output_full_path, css)?; + outputs.push(bundle_output_full_path); + } else { + let mut out_paths = Vec::new(); + parser.for_each_classes_multiple_output( + &project.input_paths, + &project_output_dir_path, + |output_file_path, source_path, classes| { + let source = Arc::new(SourceFile::new_path_only( + Some(source_path.clone()), + source_path.to_string_lossy().to_string(), + )); + let spells = Spell::generate_spells_from_classes( + classes, + &self.config.shared_spells, + &self.config.scrolls, + Some(source), + )?; + + let css = self + .css_builder + .combine_spells_to_optimized_css_string(&spells)?; + Self::create_output_directory_if_needed(&output_file_path)?; + fs::write(&output_file_path, css)?; + out_paths.push(output_file_path); + Ok(()) + }, + )?; + outputs.extend(out_paths); + } + + Ok(outputs) + } + + fn jobs_from_env() -> Result { + match env::var("GRIMOIRE_CSS_JOBS") { + Ok(v) => Self::parse_jobs(&v).map(Self::cap_jobs_to_machine), + Err(env::VarError::NotPresent) => Ok(1), + Err(e) => Err(GrimoireCssError::InvalidInput(format!( + "Failed to read GRIMOIRE_CSS_JOBS: {e}" + ))), + } + } + + fn parse_jobs(raw: &str) -> Result { + let trimmed = raw.trim(); + let jobs: usize = trimmed.parse().map_err(|_| { + GrimoireCssError::InvalidInput(format!( + "Invalid GRIMOIRE_CSS_JOBS value '{trimmed}': expected a positive integer" + )) + })?; + + if jobs == 0 { + return Err(GrimoireCssError::InvalidInput( + "GRIMOIRE_CSS_JOBS must be >= 1".to_string(), + )); + } + + Ok(jobs) + } + + fn cap_jobs_to_machine(requested: usize) -> usize { + let max = thread::available_parallelism() + .map(|n| n.get()) + .unwrap_or(1); + requested.clamp(1, max) + } } #[cfg(test)] mod tests { use super::*; + use crate::core::ConfigFsCritical; use std::path::Path; struct MockOptimizer; @@ -525,21 +618,19 @@ mod tests { let optimizer = MockOptimizer; let builder = CssBuilderFs::new(&config, current_dir, &optimizer).unwrap(); + let spell = Spell::new( + "d=grid", + &config.shared_spells, + &config.scrolls, + (0, 0), + None, + ) + .unwrap() + .unwrap(); + let build_info = BuildInfo { file_path: PathBuf::from("test_output.css"), - spells: vec![Spell { - file_path: None, - span: (0, 0), - source: None, - raw_spell: "d=grid".to_string(), - component: "display".to_string(), - component_target: "grid".to_string(), - effects: String::new(), - area: String::new(), - focus: String::new(), - with_template: false, - scroll_spells: None, - }], + spells: vec![spell], }; let result = builder.compile_css(&[build_info]); @@ -556,25 +647,23 @@ mod tests { let optimizer = MockOptimizer; let builder = CssBuilderFs::new(&config, current_dir, &optimizer).unwrap(); - let spells = vec![Spell { - file_path: None, - span: (0, 0), - source: None, - raw_spell: "d=grid".to_string(), - component: "display".to_string(), - component_target: "grid".to_string(), - effects: String::new(), - area: String::new(), - focus: String::new(), - with_template: false, - scroll_spells: None, - }]; - - let result = builder.css_builder.combine_spells_to_css(&spells); + let spell = Spell::new( + "d=grid", + &config.shared_spells, + &config.scrolls, + (0, 0), + None, + ) + .unwrap() + .unwrap(); + + let spells = vec![spell]; + + let result = builder.css_builder.combine_spells_to_css_string(&spells); assert!(result.is_ok()); let assembled_css = result.unwrap(); - assert_eq!(assembled_css[0], ".d\\=grid{display:grid;}"); + assert_eq!(assembled_css, ".d\\=grid{display:grid;}"); } #[test] @@ -605,4 +694,44 @@ mod tests { let optimized_css = result.unwrap(); assert_eq!(optimized_css, ".d\\=grid{display:grid;}_optimized"); } + + #[test] + fn test_compose_extra_css_is_raw_not_optimized() { + let config = create_test_config(); + let current_dir = Path::new("."); + let optimizer = MockOptimizer; + let builder = CssBuilderFs::new(&config, current_dir, &optimizer).unwrap(); + + let raw = builder.compose_extra_css(&["d=grid".to_string()]).unwrap(); + // compose_extra_css returns raw CSS; optimization is the caller's responsibility. + assert_eq!(raw, ".d\\=grid{display:grid;}"); + } + + #[test] + fn test_compile_critical_css_shares_payload_across_files() { + let mut config = create_test_config(); + config.critical = Some(vec![ConfigFsCritical { + file_to_inline_paths: vec!["a.html".to_string(), "b.html".to_string()], + styles: Some(vec!["d=grid".to_string()]), + css_custom_properties: None, + }]); + + let current_dir = Path::new("."); + let optimizer = MockOptimizer; + let builder = CssBuilderFs::new(&config, current_dir, &optimizer).unwrap(); + + let compiled = builder.compile_critical_css().unwrap().unwrap(); + assert_eq!(compiled.len(), 2); + assert!(Arc::ptr_eq(&compiled[0].1, &compiled[1].1)); + assert_eq!(compiled[0].1.as_ref(), ".d\\=grid{display:grid;}_optimized"); + } + + #[test] + fn test_parse_jobs_defaults_and_validation() { + assert_eq!(CssBuilderFs::parse_jobs("1").unwrap(), 1); + assert_eq!(CssBuilderFs::parse_jobs(" 4 ").unwrap(), 4); + assert!(CssBuilderFs::parse_jobs("0").is_err()); + assert!(CssBuilderFs::parse_jobs("-1").is_err()); + assert!(CssBuilderFs::parse_jobs("abc").is_err()); + } } diff --git a/src/core/css_builder/css_builder_in_memory.rs b/src/core/css_builder/css_builder_in_memory.rs index 2b7fb3b..0ce73c1 100644 --- a/src/core/css_builder/css_builder_in_memory.rs +++ b/src/core/css_builder/css_builder_in_memory.rs @@ -8,8 +8,8 @@ use std::sync::Arc; use crate::core::{ CssOptimizer, GrimoireCssError, compiled_css::CompiledCssInMemory, - config::config_in_memory::ConfigInMemory, parser::Parser, spell::Spell, - source_file::SourceFile, + config::config_in_memory::ConfigInMemory, parser::Parser, source_file::SourceFile, + spell::Spell, }; use super::CssBuilder; @@ -65,25 +65,21 @@ impl<'a> CssBuilderInMemory<'a> { self.parser .collect_candidates(&content, &mut class_names, &mut seen_class_names)?; - let source = Arc::new(SourceFile::new( - None, - project.name.clone(), - content, - )); + let source = Arc::new(SourceFile::new(None, project.name.clone(), content)); // Generate spells using empty shared_spells set since we're working in memory let spells = Spell::generate_spells_from_classes( class_names, &HashSet::new(), &self.config.scrolls, - None, Some(source), )?; // Combine spells into CSS - let assembled_spells = self.css_builder.combine_spells_to_css(&spells)?; - let raw_css = assembled_spells.join(""); - let css = self.css_builder.optimize_css(&raw_css)?; + // Avoid validate() + optimize() double-parsing for the common success path. + let css = self + .css_builder + .combine_spells_to_optimized_css_string(&spells)?; results.push(CompiledCssInMemory { name: project.name.clone(), diff --git a/src/core/css_generator/color_functions.rs b/src/core/css_generator/color_functions.rs index 2f32573..ea17559 100644 --- a/src/core/css_generator/color_functions.rs +++ b/src/core/css_generator/color_functions.rs @@ -45,7 +45,9 @@ static SPELL_COLOR_FUNCTIONS: &[(&str, SpellColorFunc)] = &[ /// * `Some(String)` containing the resulting color in hex form (e.g., `"#808080"`), /// if parsing and the color transformation succeed. /// * `None` if the string is not in a valid format, or the color transformation failed. -pub fn try_handle_color_function(adapted_target: &str) -> Result, crate::core::GrimoireCssError> { +pub fn try_handle_color_function( + adapted_target: &str, +) -> Result, crate::core::GrimoireCssError> { let Some((func_name, args_str)) = parse_function_call(adapted_target) else { return Ok(None); }; @@ -77,9 +79,13 @@ pub fn try_handle_color_function(adapted_target: &str) -> Result, "g-invert" => "g-invert(color [weight])", "g-mix" => "g-mix(color1 color2 weight)", "g-adjust-hue" => "g-adjust-hue(color degrees)", - "g-adjust-color" => "g-adjust-color(color [red_delta green_delta blue_delta hue_delta sat_delta light_delta alpha_delta])", + "g-adjust-color" => { + "g-adjust-color(color [red_delta green_delta blue_delta hue_delta sat_delta light_delta alpha_delta])" + } "g-change-color" => "g-change-color(color [red green blue hue sat light alpha])", - "g-scale-color" => "g-scale-color(color [red_scale green_scale blue_scale saturation_scale lightness_scale alpha_scale])", + "g-scale-color" => { + "g-scale-color(color [red_scale green_scale blue_scale saturation_scale lightness_scale alpha_scale])" + } "g-rgba" => "g-rgba(color alpha)", "g-lighten" => "g-lighten(color amount)", "g-darken" => "g-darken(color amount)", @@ -391,7 +397,10 @@ mod tests { /// A helper to compare Option equality with Some("#rrggbb"). /// This is just to reduce boilerplate in our tests. - fn assert_hex_eq(got: Result, crate::core::GrimoireCssError>, expected_hex: &str) { + fn assert_hex_eq( + got: Result, crate::core::GrimoireCssError>, + expected_hex: &str, + ) { assert_eq!(got.unwrap(), Some(expected_hex.to_string())); } diff --git a/src/core/css_generator/css_generator_base.rs b/src/core/css_generator/css_generator_base.rs index 1486fb7..9baf817 100644 --- a/src/core/css_generator/css_generator_base.rs +++ b/src/core/css_generator/css_generator_base.rs @@ -118,23 +118,23 @@ impl<'a> CssGenerator<'a> { }; } - if let GrimoireCssError::InvalidInput(msg) = &error { - if msg.starts_with("Unknown animation") { - return GrimoireCssError::CompileError { - message: format!("Invalid input: {msg}"), - span: spell.span, - label: "Error in this spell".to_string(), - help: Some( - "The animation name is not known.\n\ + if let GrimoireCssError::InvalidInput(msg) = &error + && msg.starts_with("Unknown animation") + { + return GrimoireCssError::CompileError { + message: format!("Invalid input: {msg}"), + span: spell.span, + label: "Error in this spell".to_string(), + help: Some( + "The animation name is not known.\n\ \ Fix options:\n\ - Use a built-in animation name supported by Grimoire CSS\n\ - Or define a custom animation in config -> custom_animations\n" - .to_string(), - ), - source_file: spell.source.clone(), - }; - } + .to_string(), + ), + source_file: spell.source.clone(), + }; } let message = error.to_string(); @@ -153,13 +153,13 @@ Fix options:\n\ let css_class_name = self .generate_css_class_name( &spell.raw_spell, - &spell.effects, - &spell.focus, + spell.effects(), + spell.focus(), spell.with_template, ) .map_err(|e| self.create_compile_error(spell, e))?; - let component_str = spell.component.as_str(); + let component_str = spell.component(); // match component and get css property let css_property: Option<&str> = if component_str.starts_with("--") { @@ -173,7 +173,7 @@ Fix options:\n\ Some(css_property) => { // adapt target let adapted_target = self - .adapt_targets(&spell.component_target, self.variables) + .adapt_targets(spell.component_target(), self.variables) .map_err(|e| self.create_compile_error(spell, e))?; // generate base css without any media queries (except for the mrs function) let (base_css, additional_css) = self @@ -184,9 +184,9 @@ Fix options:\n\ ) .map_err(|e| self.create_compile_error(spell, e))?; - if !spell.area.is_empty() { + if !spell.area().is_empty() { return Ok(Some(( - self.wrap_base_css_with_media_query(&spell.area, &base_css), + self.wrap_base_css_with_media_query(spell.area(), &base_css), css_class_name, additional_css, ))); @@ -283,7 +283,7 @@ Fix options:\n\ // // We intentionally return a "context-carrying" error variant here. The outer layer // (generate_css/create_compile_error) will attach the actual source and span. - return Err(GrimoireCssError::CompileError { + Err(GrimoireCssError::CompileError { message: "Spaces are not allowed inside a single spell token.".to_string(), span: (0, 0), label: "Error in this spell".to_string(), @@ -294,7 +294,7 @@ Fix: replace spaces with '_' inside the value, e.g.:\n\ Offending spell: '{class_name}'" )), source_file: None, - }); + }) } _ => Ok(c.to_string()), }) @@ -1194,19 +1194,12 @@ mod tests { let config = ConfigFs::default(); let generator = CssGenerator::new(&config.variables, &config.custom_animations).unwrap(); - let spell = Spell { - file_path: None, - span: (0, 0), - source: None, - raw_spell: "bg-c=pink".to_string(), - component: "bg-c".to_string(), - component_target: "pink".to_string(), - effects: "".to_string(), - area: "".to_string(), - focus: "".to_string(), - with_template: false, - scroll_spells: None, - }; + let shared_spells = std::collections::HashSet::new(); + let scrolls: Option>> = None; + + let spell = Spell::new("bg-c=pink", &shared_spells, &scrolls, (0, 0), None) + .unwrap() + .unwrap(); let result = generator.generate_css(&spell); @@ -1222,19 +1215,15 @@ mod tests { // --- COMPLEX --- - let spell_complex = Spell { - file_path: None, - span: (0, 0), - source: None, - raw_spell: "{[data-theme='light']_p}font-sz=mrs(14px_16px_380px_800px)".to_string(), - component: "font-sz".to_string(), - component_target: "mrs(14px_16px_380px_800px)".to_string(), - effects: "".to_string(), - area: "".to_string(), - focus: "[data-theme='light']_p".to_string(), - with_template: true, - scroll_spells: None, - }; + let spell_complex = Spell::new( + "{[data-theme='light']_p}font-sz=mrs(14px_16px_380px_800px)", + &shared_spells, + &scrolls, + (0, 0), + None, + ) + .unwrap() + .unwrap(); let result = generator.generate_css(&spell_complex); @@ -1248,7 +1237,7 @@ mod tests { assert_eq!( css, - r".g\!\{\[data-theme\=\'light\'\]\_p\}font-sz\=mrs\(14px\_16px\_380px\_800px\)\;[data-theme='light'] p{font-size:14px;}@media screen and (min-width: 380px) {.g\!\{\[data-theme\=\'light\'\]\_p\}font-sz\=mrs\(14px\_16px\_380px\_800px\)\;[data-theme='light'] p{font-size: calc(14px + 2 * ((100vw - 380px) / 420));}}@media screen and (min-width: 800px) {.g\!\{\[data-theme\=\'light\'\]\_p\}font-sz\=mrs\(14px\_16px\_380px\_800px\)\;[data-theme='light'] p{font-size: 16px;}}" + r".\{\[data-theme\=\'light\'\]\_p\}font-sz\=mrs\(14px\_16px\_380px\_800px\)[data-theme='light'] p{font-size:14px;}@media screen and (min-width: 380px) {.\{\[data-theme\=\'light\'\]\_p\}font-sz\=mrs\(14px\_16px\_380px\_800px\)[data-theme='light'] p{font-size: calc(14px + 2 * ((100vw - 380px) / 420));}}@media screen and (min-width: 800px) {.\{\[data-theme\=\'light\'\]\_p\}font-sz\=mrs\(14px\_16px\_380px\_800px\)[data-theme='light'] p{font-size: 16px;}}" ); } diff --git a/src/core/grimoire_css_error.rs b/src/core/grimoire_css_error.rs index 39ab885..9406873 100644 --- a/src/core/grimoire_css_error.rs +++ b/src/core/grimoire_css_error.rs @@ -5,8 +5,8 @@ //! serialization/deserialization processes, and custom application-specific errors related to //! invalid input or spell formats. -use thiserror::Error; use std::sync::Arc; +use thiserror::Error; use super::source_file::SourceFile; diff --git a/src/core/parser/parser_base.rs b/src/core/parser/parser_base.rs index 94b98ab..2ed611c 100644 --- a/src/core/parser/parser_base.rs +++ b/src/core/parser/parser_base.rs @@ -141,6 +141,15 @@ impl Parser { let start = base_offset + part_start; let length = part.len(); + // For regular `class` / `className` tokens we can check the HashSet + // by `&str` first to avoid allocating `String` for duplicates. + if !matches!(collection_type, CollectionType::CurlyClass) + && !part.is_empty() + && seen_class_names.contains(part) + { + continue; + } + let mut class_string = part.to_string(); if matches!(collection_type, CollectionType::CurlyClass) { @@ -165,7 +174,8 @@ impl Parser { // // We return a Diagnostic-style error so the CLI can render it like rustc. return Err(GrimoireCssError::CompileError { - message: "Spaces are not allowed inside a single spell token.".to_string(), + message: "Spaces are not allowed inside a single spell token." + .to_string(), span: (start, length), label: "Error in this spell".to_string(), help: Some(format!( diff --git a/src/core/parser/parser_fs.rs b/src/core/parser/parser_fs.rs index b9986b1..7537198 100644 --- a/src/core/parser/parser_fs.rs +++ b/src/core/parser/parser_fs.rs @@ -2,8 +2,8 @@ //! with filesystem-specific functionality for collecting CSS classes from files and directories. use super::Parser; -use crate::{buffer::add_message, core::GrimoireCssError}; use crate::core::SourceFile; +use crate::{buffer::add_message, core::GrimoireCssError}; use std::{ collections::HashSet, fs, @@ -11,6 +11,13 @@ use std::{ sync::Arc, }; +type Span = (usize, usize); +type ClassWithSpan = (String, Span); +type ClassesWithSpans = Vec; + +type SingleOutputFileClasses = (PathBuf, ClassesWithSpans); +type MultipleOutputFileClasses = (PathBuf, PathBuf, ClassesWithSpans); + /// `ParserFs` extends the base `Parser` with filesystem-specific functionality. /// It handles file reading, directory traversal, and path resolution. pub struct ParserFs { @@ -39,7 +46,7 @@ impl ParserFs { /// /// # Returns /// - /// A vector of tuples containing file path, file content, and found classes with spans. + /// A vector of tuples containing file path and found classes with spans. /// /// # Errors /// @@ -47,7 +54,7 @@ impl ParserFs { pub fn collect_classes_single_output( &self, input_paths: &Vec, - ) -> Result)>, GrimoireCssError> { + ) -> Result, GrimoireCssError> { let mut results = Vec::new(); let mut seen_class_names: HashSet = HashSet::new(); @@ -68,17 +75,17 @@ impl ParserFs { /// /// # Returns /// - /// A vector of tuples: (OutputCssPath, InputSourcePath, InputSourceContent, ClassesWithSpans). + /// A vector of tuples: (OutputCssPath, InputSourcePath, ClassesWithSpans). /// /// # Errors /// /// Returns a `GrimoireCSSError` if any file or directory cannot be processed. + #[allow(dead_code)] pub fn collect_classes_multiple_output( &self, input_paths: &Vec, output_dir_path: &Path, - ) -> Result)>, GrimoireCssError> - { + ) -> Result, GrimoireCssError> { let mut res = Vec::new(); for input_path_string in input_paths { @@ -108,7 +115,7 @@ impl ParserFs { return Err(e.with_source(src)); } - res.push((bundle_output_full_path, path, file_content, class_names)); + res.push((bundle_output_full_path, path, class_names)); } else if path.is_dir() { let entries = &self.get_sorted_directory_entries(&path)?; @@ -133,6 +140,75 @@ impl ParserFs { Ok(res) } + /// Streaming variant of `collect_classes_multiple_output`. + /// + /// Calls `visitor` once per input file instead of building a large in-memory vector. + pub fn for_each_classes_multiple_output( + &self, + input_paths: &Vec, + output_dir_path: &Path, + mut visitor: F, + ) -> Result<(), GrimoireCssError> + where + F: FnMut(PathBuf, PathBuf, ClassesWithSpans) -> Result<(), GrimoireCssError>, + { + for input_path_string in input_paths { + let path = self.current_dir.join(input_path_string); + self.visit_classes_multiple_output_path(&path, output_dir_path, &mut visitor)?; + } + + Ok(()) + } + + fn visit_classes_multiple_output_path( + &self, + path: &Path, + output_dir_path: &Path, + visitor: &mut F, + ) -> Result<(), GrimoireCssError> + where + F: FnMut(PathBuf, PathBuf, ClassesWithSpans) -> Result<(), GrimoireCssError>, + { + if path.is_file() { + let mut class_names = Vec::new(); + let mut seen_class_names: HashSet = HashSet::new(); + + let output_file_path = path.with_extension("css"); + let bundle_output_full_path = + output_dir_path.join(output_file_path.file_name().ok_or_else(|| { + GrimoireCssError::InvalidPath(output_file_path.to_string_lossy().into()) + })?); + + let file_content = fs::read_to_string(path)?; + if let Err(e) = self.base_parser.collect_candidates( + &file_content, + &mut class_names, + &mut seen_class_names, + ) { + let src = Arc::new(SourceFile::new( + Some(path.to_path_buf()), + path.to_string_lossy().to_string(), + file_content.clone(), + )); + return Err(e.with_source(src)); + } + + visitor(bundle_output_full_path, path.to_path_buf(), class_names)?; + return Ok(()); + } + + if path.is_dir() { + let entries = self.get_sorted_directory_entries(path)?; + for entry in entries { + self.visit_classes_multiple_output_path(&entry, output_dir_path, visitor)?; + } + return Ok(()); + } + + add_message(format!("Invalid path: {}", path.display())); + Ok(()) + } + /// Recursively collects CSS class names or templated spells from a given file or directory path. /// /// # Arguments @@ -147,7 +223,7 @@ impl ParserFs { fn collect_spells_from_path( &self, path: &Path, - results: &mut Vec<(PathBuf, String, Vec<(String, (usize, usize))>)>, + results: &mut Vec, seen_class_names: &mut HashSet, ) -> Result<(), GrimoireCssError> { if path.is_file() { @@ -168,7 +244,7 @@ impl ParserFs { } if !class_names.is_empty() { - results.push((path.to_path_buf(), file_content, class_names)); + results.push((path.to_path_buf(), class_names)); } } else if path.is_dir() { let entries = &self.get_sorted_directory_entries(path)?; @@ -182,7 +258,6 @@ impl ParserFs { Ok(()) } - /// Retrieves and sorts all entries in a given directory. /// /// # Arguments @@ -241,7 +316,7 @@ mod tests { assert!(result.is_ok()); let results = result.unwrap(); assert_eq!(results.len(), 1); - let (path, _, classes) = &results[0]; + let (path, classes) = &results[0]; assert_eq!(path, &test_file); assert_eq!(classes.len(), 3); @@ -277,12 +352,12 @@ mod tests { assert_eq!(outputs.len(), 2); // Check first file output - let (_, _, _, classes1) = &outputs[0]; + let (_, _, classes1) = &outputs[0]; assert_eq!(classes1.len(), 1); assert_eq!(classes1[0].0, "file1-class"); // Check second file output - let (_, _, _, classes2) = &outputs[1]; + let (_, _, classes2) = &outputs[1]; assert_eq!(classes2.len(), 1); assert_eq!(classes2[0].0, "file2-class"); } @@ -306,7 +381,7 @@ mod tests { assert!(result.is_ok()); let results = result.unwrap(); assert_eq!(results.len(), 1); - let (_, _, classes) = &results[0]; + let (_, classes) = &results[0]; assert_eq!(classes.len(), 1); assert_eq!(classes[0].0, "nested-class"); } @@ -329,4 +404,26 @@ mod tests { assert!(result.is_ok()); assert_eq!(result.unwrap().len(), 0); } + + #[test] + fn test_collect_classes_single_output_dedups_across_files() { + let temp_dir = tempdir().unwrap(); + let a = temp_dir.path().join("a.html"); + let b = temp_dir.path().join("b.html"); + + // Same token appears in both files. + fs::write(&a, r#"

"#).unwrap(); + fs::write(&b, r#"
"#).unwrap(); + + let parser = ParserFs::new(temp_dir.path()); + let input_paths = vec!["a.html".to_string(), "b.html".to_string()]; + + let results = parser.collect_classes_single_output(&input_paths).unwrap(); + + // Dedup is global across all inputs in single-output mode. + assert_eq!(results.len(), 1); + assert_eq!(results[0].0, a); + assert_eq!(results[0].1.len(), 1); + assert_eq!(results[0].1[0].0, "h=10px".to_string()); + } } diff --git a/src/core/source_file.rs b/src/core/source_file.rs index 473f35b..69b6182 100644 --- a/src/core/source_file.rs +++ b/src/core/source_file.rs @@ -4,7 +4,7 @@ use std::{path::PathBuf, sync::Arc}; pub struct SourceFile { pub name: String, pub path: Option, - pub content: Arc, + pub content: Option>, } impl SourceFile { @@ -12,7 +12,15 @@ impl SourceFile { Self { name, path, - content: Arc::new(content), + content: Some(Arc::new(content)), + } + } + + pub fn new_path_only(path: Option, name: String) -> Self { + Self { + name, + path, + content: None, } } } diff --git a/src/core/spell.rs b/src/core/spell.rs index 0c5f3c1..70c7dc8 100644 --- a/src/core/spell.rs +++ b/src/core/spell.rs @@ -27,39 +27,34 @@ use std::collections::{HashMap, HashSet}; use std::hash::{Hash, Hasher}; -use std::path::PathBuf; use std::sync::Arc; use super::{ - GrimoireCssError, - component::get_css_property, - source_file::SourceFile, - spell_value_validator, + GrimoireCssError, component::get_css_property, source_file::SourceFile, spell_value_validator, }; +#[derive(Debug, Clone)] +struct SpellParts { + area: std::ops::Range, + focus: std::ops::Range, + effects: std::ops::Range, + component: std::ops::Range, + component_target: std::ops::Range, +} + #[derive(Debug, Clone)] pub struct Spell { pub raw_spell: String, - pub component: String, - pub component_target: String, - pub effects: String, - pub area: String, - pub focus: String, pub with_template: bool, pub scroll_spells: Option>, pub span: (usize, usize), - pub file_path: Option, pub source: Option>, + parts: Option, } impl PartialEq for Spell { fn eq(&self, other: &Self) -> bool { self.raw_spell == other.raw_spell - && self.component == other.component - && self.component_target == other.component_target - && self.effects == other.effects - && self.area == other.area - && self.focus == other.focus && self.with_template == other.with_template && self.scroll_spells == other.scroll_spells } @@ -70,24 +65,53 @@ impl Eq for Spell {} impl Hash for Spell { fn hash(&self, state: &mut H) { self.raw_spell.hash(state); - self.component.hash(state); - self.component_target.hash(state); - self.effects.hash(state); - self.area.hash(state); - self.focus.hash(state); self.with_template.hash(state); self.scroll_spells.hash(state); } } impl Spell { + pub fn area(&self) -> &str { + self.parts + .as_ref() + .map(|p| &self.raw_spell[p.area.clone()]) + .unwrap_or("") + } + + pub fn focus(&self) -> &str { + self.parts + .as_ref() + .map(|p| &self.raw_spell[p.focus.clone()]) + .unwrap_or("") + } + + pub fn effects(&self) -> &str { + self.parts + .as_ref() + .map(|p| &self.raw_spell[p.effects.clone()]) + .unwrap_or("") + } + + pub fn component(&self) -> &str { + self.parts + .as_ref() + .map(|p| &self.raw_spell[p.component.clone()]) + .unwrap_or("") + } + + pub fn component_target(&self) -> &str { + self.parts + .as_ref() + .map(|p| &self.raw_spell[p.component_target.clone()]) + .unwrap_or("") + } + /// Example input: "md__{_>_p}hover:display=none" pub fn new( raw_spell: &str, shared_spells: &HashSet, scrolls: &Option>>, span: (usize, usize), - file_path: Option, source: Option>, ) -> Result, GrimoireCssError> { let with_template = Self::check_for_template(raw_spell); @@ -105,51 +129,67 @@ impl Spell { .filter(|s| !s.is_empty()) .collect(); + // Template spell: keep outer spell and parse inner spells. if with_template && !raw_spell_split.is_empty() { let mut scroll_spells: Vec = Vec::new(); for rs in raw_spell_split { - if let Some(spell) = Spell::new( - rs, - shared_spells, - scrolls, - span, - file_path.clone(), - source.clone(), - )? { + if let Some(spell) = Spell::new(rs, shared_spells, scrolls, span, source.clone())? { scroll_spells.push(spell); } } return Ok(Some(Spell { raw_spell: raw_spell_cleaned.to_string(), - component: String::new(), - component_target: String::new(), - effects: String::new(), - area: String::new(), - focus: String::new(), with_template, scroll_spells: Some(scroll_spells), span, - file_path, source, + parts: None, })); } - // Split the input string by "__" to separate the area (screen size) and the rest - let (area, rest) = raw_spell_cleaned - .split_once("__") - .unwrap_or(("", raw_spell_cleaned)); + let raw = raw_spell_cleaned.to_string(); + + // Parse into byte ranges within `raw`. + let mut area_range = 0..0; + let mut focus_range = 0..0; + let mut effects_range = 0..0; + + let mut rest_start = 0usize; + if let Some(pos) = raw.find("__") { + area_range = 0..pos; + rest_start = pos + 2; + } + + let mut after_focus_start = rest_start; + if rest_start < raw.len() + && let Some(close_rel) = raw[rest_start..].find('}') + { + let focus_part_start = if raw.as_bytes().get(rest_start) == Some(&b'{') { + rest_start + 1 + } else { + rest_start + }; + focus_range = focus_part_start..(rest_start + close_rel); + after_focus_start = rest_start + close_rel + 1; + } - // Split the raw spell by "}" to get the focus and the rest - let (focus, rest) = rest - .split_once('}') - .map_or(("", rest), |(f, r)| (f.strip_prefix('{').unwrap_or(f), r)); + let mut after_effects_start = after_focus_start; + if after_focus_start < raw.len() + && let Some(colon_rel) = raw[after_focus_start..].find(':') + { + effects_range = after_focus_start..(after_focus_start + colon_rel); + after_effects_start = after_focus_start + colon_rel + 1; + } - // Split the rest by ":" to get the effects (pseudo-class) and the rest - let (effects, rest) = rest.split_once(':').unwrap_or(("", rest)); + // component=target + if after_effects_start <= raw.len() + && let Some(eq_rel) = raw[after_effects_start..].find('=') + { + let component_range = after_effects_start..(after_effects_start + eq_rel); + let component_target_range = (after_effects_start + eq_rel + 1)..raw.len(); - // Split the rest by "=" to separate the component (property) and component_target (value) - if let Some((component, component_target)) = rest.split_once("=") { + let component_target = &raw[component_target_range.clone()]; if let Some(err) = spell_value_validator::validate_component_target(component_target) { let message = match err { spell_value_validator::SpellValueValidationError::UnexpectedClosingParen => { @@ -185,99 +225,105 @@ Use '_' inside spell values to represent spaces." return Err(GrimoireCssError::InvalidInput(message)); } + let parts = SpellParts { + area: area_range, + focus: focus_range, + effects: effects_range, + component: component_range.clone(), + component_target: component_target_range.clone(), + }; + let mut spell = Spell { - raw_spell: raw_spell_cleaned.to_string(), - component: component.to_string(), - component_target: component_target.to_string(), - effects: effects.to_string(), - area: area.to_string(), - focus: focus.to_string(), + raw_spell: raw, with_template, scroll_spells: None, span, - file_path: file_path.clone(), source: source.clone(), + parts: Some(parts), }; - if let Some(raw_scroll_spells) = - Self::check_raw_scroll_spells(&spell.component, scrolls) - { + let component = spell.component(); + + if let Some(raw_scroll_spells) = Self::check_raw_scroll_spells(component, scrolls) { spell.scroll_spells = Self::parse_scroll( component, raw_scroll_spells, - &spell.component_target, + spell.component_target(), shared_spells, scrolls, span, - &file_path, - source.clone(), + source, )?; - } else if !spell.component.starts_with("--") - && get_css_property(&spell.component).is_none() - { - let message = format!("Unknown component or scroll: '{}'", spell.component); + } else if !component.starts_with("--") && get_css_property(component).is_none() { + let message = format!("Unknown component or scroll: '{component}'"); if let Some(src) = &source { return Err(GrimoireCssError::InvalidSpellFormat { - message, - span, - label: "Error in this spell".to_string(), - help: Some( - "Check that the component name exists (built-in CSS property alias) or that the scroll is defined in config.scrolls." - .to_string(), - ), - source_file: Some(src.clone()), - }); + message, + span, + label: "Error in this spell".to_string(), + help: Some( + "Check that the component name exists (built-in CSS property alias) or that the scroll is defined in config.scrolls." + .to_string(), + ), + source_file: Some(src.clone()), + }); } else { return Err(GrimoireCssError::InvalidInput(message)); } } return Ok(Some(spell)); - } else if let Some(raw_scroll_spells) = Self::check_raw_scroll_spells(rest, scrolls) { - return Ok(Some(Spell { - raw_spell: raw_spell_cleaned.to_string(), - component: rest.to_string(), - component_target: String::new(), - effects: effects.to_string(), - area: area.to_string(), - focus: focus.to_string(), + } + + // scroll (no '=') + if after_effects_start <= raw.len() + && let Some(raw_scroll_spells) = + Self::check_raw_scroll_spells(&raw[after_effects_start..], scrolls) + { + let component_range = after_effects_start..raw.len(); + let parts = SpellParts { + area: area_range, + focus: focus_range, + effects: effects_range, + component: component_range.clone(), + component_target: 0..0, + }; + + let mut spell = Spell { + raw_spell: raw, with_template, - scroll_spells: Self::parse_scroll( - rest, - raw_scroll_spells, - "", - shared_spells, - scrolls, - span, - &file_path, - source.clone(), - )?, + scroll_spells: None, + span, + source: source.clone(), + parts: Some(parts), + }; + + let component = spell.component(); + spell.scroll_spells = Self::parse_scroll( + component, + raw_scroll_spells, + "", + shared_spells, + scrolls, span, - file_path, source, - })); + )?; + + return Ok(Some(spell)); } Ok(None) // Return None if format is invalid } - fn check_for_template(class_name: &str) -> bool { - class_name.starts_with("g!") && class_name.ends_with(";") + fn check_for_template(raw_spell: &str) -> bool { + raw_spell.starts_with("g!") && raw_spell.ends_with(';') } fn check_raw_scroll_spells<'a>( - spell_component: &'a str, + scroll_name: &str, scrolls: &'a Option>>, ) -> Option<&'a Vec> { - if get_css_property(spell_component).is_some() { - return None; - } - - if let Some(scrolls) = scrolls { - return scrolls.get(spell_component); - }; - - None + scrolls.as_ref()?.get(scroll_name) } #[allow(clippy::too_many_arguments)] @@ -288,7 +334,6 @@ Use '_' inside spell values to represent spaces." shared_spells: &HashSet, scrolls: &Option>>, span: (usize, usize), - file_path: &Option, source: Option>, ) -> Result>, GrimoireCssError> { if raw_scroll_spells.is_empty() { @@ -307,7 +352,7 @@ Use '_' inside spell values to represent spaces." for raw_spell in raw_scroll_spells.iter() { if raw_spell.contains("=$") { - if count_of_used_variables > scroll_variables.len() - 1 { + if count_of_used_variables > scroll_variables.len().saturating_sub(1) { break; } @@ -321,21 +366,15 @@ Use '_' inside spell values to represent spaces." shared_spells, scrolls, span, - file_path.clone(), source.clone(), ) { spells.push(spell); } count_of_used_variables += 1; - } else if let Ok(Some(spell)) = Spell::new( - raw_spell, - shared_spells, - scrolls, - span, - file_path.clone(), - source.clone(), - ) { + } else if let Ok(Some(spell)) = + Spell::new(raw_spell, shared_spells, scrolls, span, source.clone()) + { spells.push(spell); } } @@ -373,23 +412,15 @@ Example: complex-card=arg1_arg2_arg3" css_classes: Vec<(String, (usize, usize))>, shared_spells: &HashSet, scrolls: &Option>>, - file_path: Option, source: Option>, ) -> Result, GrimoireCssError> { let mut spells = Vec::with_capacity(css_classes.len()); for (cs, span) in css_classes { - if !shared_spells.contains(&cs) { - if let Some(spell) = Spell::new( - &cs, - shared_spells, - scrolls, - span, - file_path.clone(), - source.clone(), - )? { - spells.push(spell); - } + if !shared_spells.contains(&cs) + && let Some(spell) = Spell::new(&cs, shared_spells, scrolls, span, source.clone())? + { + spells.push(spell); } } @@ -399,8 +430,8 @@ Example: complex-card=arg1_arg2_arg3" #[cfg(test)] mod tests { - use crate::core::spell::Spell; use crate::core::source_file::SourceFile; + use crate::core::spell::Spell; use std::collections::{HashMap, HashSet}; use std::sync::Arc; @@ -409,17 +440,17 @@ mod tests { let shared_spells = HashSet::new(); let scrolls: Option>> = None; let raw = "g!color=red--display=flex;"; - let spell = Spell::new(raw, &shared_spells, &scrolls, (0, 0), None, None) + let spell = Spell::new(raw, &shared_spells, &scrolls, (0, 0), None) .expect("parse ok") .expect("not None"); assert!(spell.with_template); assert!(spell.scroll_spells.is_some()); let spells = spell.scroll_spells.as_ref().unwrap(); assert_eq!(spells.len(), 2); - assert_eq!(spells[0].component, "color"); - assert_eq!(spells[0].component_target, "red"); - assert_eq!(spells[1].component, "display"); - assert_eq!(spells[1].component_target, "flex"); + assert_eq!(spells[0].component(), "color"); + assert_eq!(spells[0].component_target(), "red"); + assert_eq!(spells[1].component(), "display"); + assert_eq!(spells[1].component_target(), "flex"); } #[test] @@ -433,7 +464,6 @@ mod tests { &shared_spells, &scrolls, (12, 3), - None, Some(Arc::new(SourceFile::new( None, "test".to_string(), diff --git a/src/core/spell_value_validator.rs b/src/core/spell_value_validator.rs index 8ed0027..27c48eb 100644 --- a/src/core/spell_value_validator.rs +++ b/src/core/spell_value_validator.rs @@ -5,12 +5,6 @@ pub enum SpellValueValidationError { } pub fn validate_component_target(component_target: &str) -> Option { - // Intentionally minimal and cheap validation to surface common HTML class tokenization mistakes - // (e.g. h=calc(100vh - 50px) becomes h=calc(100vh). - // - // We only treat parentheses as syntax when NOT inside CSS string literals. - // In CSS, string literals are only single/double quotes. - let mut depth: i32 = 0; let mut in_single_quote = false; let mut in_double_quote = false; diff --git a/src/infrastructure/diagnostics.rs b/src/infrastructure/diagnostics.rs index f20ab1e..15bdfe1 100644 --- a/src/infrastructure/diagnostics.rs +++ b/src/infrastructure/diagnostics.rs @@ -4,7 +4,15 @@ use std::sync::Arc; use thiserror::Error; fn named_source_from(source: &Arc) -> miette::NamedSource { - miette::NamedSource::new(source.name.clone(), (*source.content).clone()) + let content = if let Some(content) = &source.content { + (**content).clone() + } else if let Some(path) = &source.path { + std::fs::read_to_string(path).unwrap_or_default() + } else { + String::new() + }; + + miette::NamedSource::new(source.name.clone(), content) } #[derive(Debug, Error, Diagnostic)] @@ -76,9 +84,13 @@ impl From<&GrimoireCssError> for GrimoireCssDiagnostic { GrimoireCssError::Serde(e) => GrimoireCssDiagnostic::Serde(e.to_string()), GrimoireCssError::InvalidInput(msg) => GrimoireCssDiagnostic::InvalidInput(msg.clone()), GrimoireCssError::InvalidPath(msg) => GrimoireCssDiagnostic::InvalidPath(msg.clone()), - GrimoireCssError::GlobPatternError(msg) => GrimoireCssDiagnostic::GlobPatternError(msg.clone()), + GrimoireCssError::GlobPatternError(msg) => { + GrimoireCssDiagnostic::GlobPatternError(msg.clone()) + } GrimoireCssError::RuntimeError(msg) => GrimoireCssDiagnostic::RuntimeError(msg.clone()), - GrimoireCssError::OptimizationError(msg) => GrimoireCssDiagnostic::OptimizationError(msg.clone()), + GrimoireCssError::OptimizationError(msg) => { + GrimoireCssDiagnostic::OptimizationError(msg.clone()) + } GrimoireCssError::InvalidSpellFormat { message, span, @@ -89,9 +101,7 @@ impl From<&GrimoireCssError> for GrimoireCssDiagnostic { let src = source_file .as_ref() .map(named_source_from) - .unwrap_or_else(|| { - miette::NamedSource::new("unknown".to_string(), "".to_string()) - }); + .unwrap_or_else(|| miette::NamedSource::new("unknown", "".to_string())); GrimoireCssDiagnostic::InvalidSpellFormat { message: message.clone(), @@ -111,9 +121,7 @@ impl From<&GrimoireCssError> for GrimoireCssDiagnostic { let src = source_file .as_ref() .map(named_source_from) - .unwrap_or_else(|| { - miette::NamedSource::new("unknown".to_string(), "".to_string()) - }); + .unwrap_or_else(|| miette::NamedSource::new("unknown", "".to_string())); GrimoireCssDiagnostic::CompileError { message: message.clone(), diff --git a/src/infrastructure/lightning_css_optimizer.rs b/src/infrastructure/lightning_css_optimizer.rs index 775dc46..7b1b5b5 100644 --- a/src/infrastructure/lightning_css_optimizer.rs +++ b/src/infrastructure/lightning_css_optimizer.rs @@ -7,7 +7,7 @@ use lightningcss::{ stylesheet::{MinifyOptions, ParserOptions, StyleSheet}, targets::{Browsers, Targets}, }; -use std::{env, fs, path::Path}; +use std::{fs, path::Path}; use crate::{ buffer::add_message, @@ -47,12 +47,6 @@ impl LightningCssOptimizer { add_message("Created missing '.browserslistrc' file with 'defaults'".to_string()); } - // SAFETY: We're setting an environment variable in a controlled manner. - // This is safe as long as no other threads are concurrently reading this variable. - unsafe { - env::set_var("BROWSERSLIST_CONFIG", &browserslist_config_path); - } - let content = fs::read_to_string(&browserslist_config_path) .expect("Failed to read '.browserslistrc' file"); diff --git a/src/infrastructure/mod.rs b/src/infrastructure/mod.rs index a65d70c..61d32a3 100644 --- a/src/infrastructure/mod.rs +++ b/src/infrastructure/mod.rs @@ -1,8 +1,8 @@ //! The `infrastructure` module provides integration with external libraries and services //! that power Grimoire CSS's core functionality. This includes CSS optimization, //! minification, and other low-level operations that require external dependencies. -pub mod lightning_css_optimizer; pub mod diagnostics; +pub mod lightning_css_optimizer; -pub use lightning_css_optimizer::*; pub use diagnostics::*; +pub use lightning_css_optimizer::*; diff --git a/src/lib.rs b/src/lib.rs index ff9d0ee..ed8339a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -193,11 +193,7 @@ pub fn start_as_cli(args: Vec) -> Result<(), GrimoireCssError> { print!("\r\x1b[2K{GRIMM_CURSED}\n"); println!(); - println!( - "{} {}", - style(" Cursed! ").white().on_red().bright(), - "Something went wrong..." - ); + println!("{}", style(" Cursed! ").white().on_red().bright()); println!(); let diagnostic: GrimoireCssDiagnostic = (&e).into(); diff --git a/src/main.rs b/src/main.rs index ffe6611..59b33a5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -7,6 +7,13 @@ use grimoire_css_lib::start_as_cli; use std::env; +#[cfg(feature = "heap-profile")] +use dhat::Alloc; + +#[cfg(feature = "heap-profile")] +#[global_allocator] +static ALLOC: Alloc = Alloc; + /// The entry point for the Grimoire CSS system (CLI). /// /// This function: @@ -15,6 +22,9 @@ use std::env; /// logging, error styling, spinners, and time measurements. /// - If an error is encountered, it exits with a non-zero status code. fn main() { + #[cfg(feature = "heap-profile")] + let _profiler = dhat::Profiler::new_heap(); + let args: Vec = env::args().collect(); // By calling `start_as_cli`, we rely on the library's built-in logging, From 8f60e2643076e9065a21408a98d0da64b5aea71b Mon Sep 17 00:00:00 2001 From: Dmitrii Shatokhin Date: Fri, 26 Dec 2025 22:23:03 +0100 Subject: [PATCH 2/4] chore: fix tests --- src/core/css_builder/css_builder_fs.rs | 35 +++++++++++++++++--------- 1 file changed, 23 insertions(+), 12 deletions(-) diff --git a/src/core/css_builder/css_builder_fs.rs b/src/core/css_builder/css_builder_fs.rs index 2e4942c..5b28dd1 100644 --- a/src/core/css_builder/css_builder_fs.rs +++ b/src/core/css_builder/css_builder_fs.rs @@ -619,7 +619,7 @@ mod tests { let builder = CssBuilderFs::new(&config, current_dir, &optimizer).unwrap(); let spell = Spell::new( - "d=grid", + "display=grid", &config.shared_spells, &config.scrolls, (0, 0), @@ -637,7 +637,10 @@ mod tests { assert!(result.is_ok()); let compiled_css = result.unwrap(); - assert_eq!(compiled_css[0].1, ".d\\=grid{display:grid;}_optimized"); + assert_eq!( + compiled_css[0].1, + ".display\\=grid{display:grid;}_optimized" + ); } #[test] @@ -648,7 +651,7 @@ mod tests { let builder = CssBuilderFs::new(&config, current_dir, &optimizer).unwrap(); let spell = Spell::new( - "d=grid", + "display=grid", &config.shared_spells, &config.scrolls, (0, 0), @@ -663,19 +666,22 @@ mod tests { assert!(result.is_ok()); let assembled_css = result.unwrap(); - assert_eq!(assembled_css, ".d\\=grid{display:grid;}"); + assert_eq!(assembled_css, ".display\\=grid{display:grid;}"); } #[test] fn test_cssbuilder_write_compiled_css() { let file_path = PathBuf::from("test_output.css"); - let css = vec![(file_path.clone(), ".d\\=grid{display:grid;}".to_string())]; + let css = vec![( + file_path.clone(), + ".display\\=grid{display:grid;}".to_string(), + )]; let result = CssBuilderFs::write_compiled_css(&css); assert!(result.is_ok()); let written_content = std::fs::read_to_string(&file_path).unwrap(); - assert_eq!(written_content, ".d\\=grid{display:grid;}"); + assert_eq!(written_content, ".display\\=grid{display:grid;}"); std::fs::remove_file(file_path).unwrap(); } @@ -687,12 +693,12 @@ mod tests { let optimizer = MockOptimizer; let builder = CssBuilderFs::new(&config, current_dir, &optimizer).unwrap(); - let raw_css = ".d\\=grid{display:grid;}"; + let raw_css = ".display\\=grid{display:grid;}"; let result = builder.css_builder.optimize_css(raw_css); assert!(result.is_ok()); let optimized_css = result.unwrap(); - assert_eq!(optimized_css, ".d\\=grid{display:grid;}_optimized"); + assert_eq!(optimized_css, ".display\\=grid{display:grid;}_optimized"); } #[test] @@ -702,9 +708,11 @@ mod tests { let optimizer = MockOptimizer; let builder = CssBuilderFs::new(&config, current_dir, &optimizer).unwrap(); - let raw = builder.compose_extra_css(&["d=grid".to_string()]).unwrap(); + let raw = builder + .compose_extra_css(&["display=grid".to_string()]) + .unwrap(); // compose_extra_css returns raw CSS; optimization is the caller's responsibility. - assert_eq!(raw, ".d\\=grid{display:grid;}"); + assert_eq!(raw, ".display\\=grid{display:grid;}"); } #[test] @@ -712,7 +720,7 @@ mod tests { let mut config = create_test_config(); config.critical = Some(vec![ConfigFsCritical { file_to_inline_paths: vec!["a.html".to_string(), "b.html".to_string()], - styles: Some(vec!["d=grid".to_string()]), + styles: Some(vec!["display=grid".to_string()]), css_custom_properties: None, }]); @@ -723,7 +731,10 @@ mod tests { let compiled = builder.compile_critical_css().unwrap().unwrap(); assert_eq!(compiled.len(), 2); assert!(Arc::ptr_eq(&compiled[0].1, &compiled[1].1)); - assert_eq!(compiled[0].1.as_ref(), ".d\\=grid{display:grid;}_optimized"); + assert_eq!( + compiled[0].1.as_ref(), + ".display\\=grid{display:grid;}_optimized" + ); } #[test] From a498756410e41e93e42cacfd4f45ab62800c8882 Mon Sep 17 00:00:00 2001 From: Dmitrii Shatokhin Date: Sat, 27 Dec 2025 01:56:29 +0100 Subject: [PATCH 3/4] chore: update benchmark --- benchmark/__pycache__/main.cpython-314.pyc | Bin 11776 -> 12475 bytes .../benchmark_formatter.cpython-314.pyc | Bin 12513 -> 12778 bytes .../metrics_collector.cpython-314.pyc | Bin 34543 -> 34543 bytes .../report_generator.cpython-314.pyc | Bin 17274 -> 17708 bytes benchmark/core/benchmark_formatter.py | 4 + benchmark/core/report_generator.py | 8 + benchmark/main.py | 20 +++ benchmark/results/result_20250323_111448.json | 108 -------------- .../result_20250323_111448_pretty.json | 118 --------------- ...55926.json => result_20251227_012340.json} | 85 ++++++----- benchmark/results/result_20251227_012340.txt | 126 ++++++++++++++++ ...son => result_20251227_012340_pretty.json} | 87 +++++------ benchmark/results/result_20251227_012409.json | 140 ++++++++++++++++++ ..._155926.txt => result_20251227_012409.txt} | 65 ++++---- ...son => result_20251227_012409_pretty.json} | 91 ++++++------ benchmark/results/result_20251227_012425.json | 140 ++++++++++++++++++ ..._155808.txt => result_20251227_012425.txt} | 65 ++++---- .../result_20251227_012425_pretty.json | 119 +++++++++++++++ ...55838.json => result_20251227_012441.json} | 85 ++++++----- ..._155838.txt => result_20251227_012441.txt} | 65 ++++---- ...son => result_20251227_012441_pretty.json} | 87 +++++------ ...55808.json => result_20251227_012458.json} | 89 +++++------ ..._155901.txt => result_20251227_012458.txt} | 65 ++++---- ...son => result_20251227_012458_pretty.json} | 87 +++++------ ...55901.json => result_20251227_012514.json} | 89 +++++------ benchmark/results/result_20251227_012514.txt | 126 ++++++++++++++++ .../result_20251227_012514_pretty.json | 119 +++++++++++++++ 27 files changed, 1296 insertions(+), 692 deletions(-) delete mode 100644 benchmark/results/result_20250323_111448.json delete mode 100644 benchmark/results/result_20250323_111448_pretty.json rename benchmark/results/{result_20251226_155926.json => result_20251227_012340.json} (54%) create mode 100644 benchmark/results/result_20251227_012340.txt rename benchmark/results/{result_20251226_155926_pretty.json => result_20251227_012340_pretty.json} (62%) create mode 100644 benchmark/results/result_20251227_012409.json rename benchmark/results/{result_20251226_155926.txt => result_20251227_012409.txt} (72%) rename benchmark/results/{result_20251226_155808_pretty.json => result_20251227_012409_pretty.json} (60%) create mode 100644 benchmark/results/result_20251227_012425.json rename benchmark/results/{result_20251226_155808.txt => result_20251227_012425.txt} (72%) create mode 100644 benchmark/results/result_20251227_012425_pretty.json rename benchmark/results/{result_20251226_155838.json => result_20251227_012441.json} (54%) rename benchmark/results/{result_20251226_155838.txt => result_20251227_012441.txt} (72%) rename benchmark/results/{result_20251226_155901_pretty.json => result_20251227_012441_pretty.json} (61%) rename benchmark/results/{result_20251226_155808.json => result_20251227_012458.json} (52%) rename benchmark/results/{result_20251226_155901.txt => result_20251227_012458.txt} (72%) rename benchmark/results/{result_20251226_155838_pretty.json => result_20251227_012458_pretty.json} (62%) rename benchmark/results/{result_20251226_155901.json => result_20251227_012514.json} (52%) create mode 100644 benchmark/results/result_20251227_012514.txt create mode 100644 benchmark/results/result_20251227_012514_pretty.json diff --git a/benchmark/__pycache__/main.cpython-314.pyc b/benchmark/__pycache__/main.cpython-314.pyc index 8ade4f7a408e906726beb16892d6ca3e046a13ab..047a2045835ac168e24416027ca2d49931006c77 100644 GIT binary patch delta 2062 zcmZWpTWnNC7@pa4&faflx83f254|AU(k{hvE7~BmvRkdx0TzXYb)ko{z_!cmDTa-K z#s>q@M4C}C8l@&a@L-H)UrdZfpX`I0DjL?~1x?f^HESjD_ToQhS;08T`OZJzeE-b+ z^ZzsRxwi}MKDWz`pncxGtN2}V!5zfkEZi}A4ri>I^$;Saj4f@~>?bCcl-<B9;!MwG%5~fY<;#h#fFU9DpI>1Pl`w zV1&2giPJOlq1IOS46) z_8+NKQis)#SgR8}tQ)#NUQQgyxyeonX(JJKbfR zMd}@Vxh$Hruy4bWO<)mW^Fy!=P)6Y#%6P&VK{*>gE8enb2sf=VhEWrILIkmfTQLtH z65oYc*b{dXiI_LRio7*v#wIrEF*J#$hU+?srKLKAHcul|7KoMDa)G8N_y*aeCn^$q zF2L%ZIP-dJf&=Vd6mDC?DSZe7c5a$S>(-bSrwUT^z>SnI@7wl1WgoKd&j&5Wij zJWC0*2bFOQjp6&>Dx$4I3>7ixc-D;uI;p8MG<#Z_2j;`@=$sC?ipR+{0e-b&U1EYPvX8JbJWh z>F+-^S5&nkP}`DWx`q!~)S1&oIy<8a)2gOR6^$0lx=@_abbGdNa!wtibe6J@eckL& zUzfQTTxcKb^povdjES{kNu@zBlcH|rOXq3fQQdA>r@6mwnJ#L1xF@=e8&gH9ovA<_ zBSm2^`(yjEV2;68`4MtIk8W6z*Y|YwLiOph7tSun2d{e8&!_8h`}}y_;`!7Psrw_B zMixe{`n%3s>kj`#`qW506uU6q5CzxjuVTt#@Wq1{?F~Eo(0|$0R(B>A!wta{us6)C z*!J#$!I0D3Kq1Ne$BiUvi{C)lwYnbbVfKaq*55Zek+U60$)#JJKuNB@D*OQ7$Bvyt z=zaN~!L${9Fyu;0!jgzNS{>;QVJU#q9ku=K^H|D(`tjQJz&4B@W=e2S$^&t+mJKd) z;`h)N=_nA-*EWRR0uZCI_oOlqi#1z(TnZltQ@4~3ql zc6bPGF=bQE(;P#Hc(W!I?n)HxF->41JJEVmtJ)JN=WprYeQINWCSzklR%l(yX*c(~ zZ7$y}PlCHpuA}9>ZxCLsn>VrxCH?F`@Ax5Jku(XQV}l>%{hTn4emA#xCTl^TA%Ds=s%% zKY7>uXv2)G&TE#AYwUdA>l^EG^ipCWu^72>_^Ld3P2TW{ykU7`W@+fEJUKu9m1tXb zCaxU+bYS!q`%-c_v1i%7_cJleHm)5_#dS+QKQ((KpQj;Mh59(`nMorw9`|kG8u9Vaj1BA7e14`-QeoCZoLj{~0nn{?m1d{rPO2mHGISv%RH?A@ z{oVV%M7FO{@CP(}9qql2CcZ{@ub4wPv9fs>n^&sXfxRnH3BW7i?iFts$5w{7;^4|- exCh^d87%Q6rS;V{kQA&zvK9K)BL#3f2pBK`a?oPuxUcfC<#4m>sXBw3?w$Q8>Cnj z@hKotRjQ_(;S2{rM&baKIQ3EvJrpEXDn$r{dJ858gb?t?iCgGM^UZtTym|Z0+c#g9 z8k#bsxLpXw;!g{eSo($%!Qb6T&+c0Cj-1nQrqE?XguE*!8B*J}=H;B*aOV_5Y5QW{ zlk*zhoX_yJeOun23mAbEBK9t11c?JMM4W(O;sWd<5@3YLfZfCm7$pi|>{6U~CN3hh z25RESaw+!N!M22b?7AGo$D1F?I*#~3rht(3_btE%BDlsUj_|1M1?Th_XT+lLDC}Z2T#&V z1R|fpho^}9kW3QgF$sx1#H%Ha5+evX=N(`TZ*ZQ(houe;QgPOD=#63G(|S8QTBKtU zKM7=yE=DXQxPnM%1&>)sSd-aZZ;}ghcWDEi_`<*=xe;xE$-bnYbZ3vmjyZafiZmBH z=kJovRM2T5fhstYV5|PK$6hjpjf%09v6wd9SSwRX1CaE{t!^8%kKOaD%pdsVDXz2b zq~*6pY9*?dO>6G?nc0j$Id59mD(mZY`^djoT4uxggJ_?JrKMw3j4jmvYx=n|?FTnbz&O38&=EPh-y4^3$Wrf=(@m#h!(bd2r zfvsBeR%9CEMfP|132_;Sx0~7Mhn)B}HYxIE+iM2miU7p1)YsxV5Z9Z(rd|}It6-Y; z%`)8WicX8*)h#Yp#zHI23;nx1!<~UisRTUbp|rp}=_wnJqpz{W^fmDvFh6eom>#mg zE0PCq;a$xKRC}zT0vGAKg{C9ZjxEE=m&dw`6E2z^{ zy(r_U_b!wwTWWdBpgU@<%03@H{S5CY%2S(Ir5RZ3;`zezlu8G=?N}&pR_PA7qdabm zbAtN9b8KOxe^;V$@J(sGN;gYJvAXrf4&^mA?KN74jww@KV9JY1`R}BQ9C%6F<)geH z&`kwSta9MR)A=J%Rh6o+n$}GaOs|3Y5TV>mru0w-pxwydv&vd80VdnmUam ht*f{fU%>nG7+K|a>-U82@2!r#x!(k2jnW=S{V%76IDP;C diff --git a/benchmark/core/__pycache__/benchmark_formatter.cpython-314.pyc b/benchmark/core/__pycache__/benchmark_formatter.cpython-314.pyc index fc299211a656e9e6a6a01407194e5e46536fa4d4..cc50380817a58525524a13718c96061c7fe2bc73 100644 GIT binary patch delta 573 zcmaEu_$rxCn~#@^0SM|;{WD!mHuC-9Vp8DU%)_0^Q_mD24w69yLB9G7CQJ}9tn$$W zU55OxLm3!!jh)PQo63&d49BdwWb88R6)V>ize zZ)I1w#hH|vmzw-QP1${2~CR|8LyDXUA;B|vt@DjW14Hv%-z6n)V zIg}PyT;u<(uVb>4R;hTXEGy@ z4+ES)1~UT#%jeDg8XT;ysX%TK$Yr-U%QH(d;)_dCb8oSL$f6{WR5D14C8adC;1)}I zPJWUmM^Pq7h$}O%ptK~uAh9H)sCx1p-AvYAps?s>FTHz=jLDNV4Yb)nrWW;1jxtbZ voHDt|z)IDHnNjMCADcF#Qr4_RccvB-U7Wnhsi0=XLiJZ%iGY@wv53{5)!(<0tIUZLw9|3D-S%yqT z&FIYr60Ph^n%tAG$~!V?N^O=^@MB~vmI4}}Hn~wzZ1NOEC9X;!&ku-;Gd3SkjAU2j zk-ESl`MsKzflK~6r`!cjxnITHKP$Smh_zbBu$Q@G>{NiW?n&QNqj+KNk&n{terq% r!Og+?_ZS%yCmR`Rvw=)4>YSWxsLnWHa<`!sn*%eW)EBqOrw!!+n6ya% diff --git a/benchmark/core/__pycache__/metrics_collector.cpython-314.pyc b/benchmark/core/__pycache__/metrics_collector.cpython-314.pyc index d8f4eb96db122a084c32009fb207c0ed39c9cae3..923bc1393e3d8418591e4c8551603b32ce382539 100644 GIT binary patch delta 21 bcmaFg%k;jNiA$T0mx}=iDt>L`dfEm6O1TE_ delta 21 bcmaFg%k;jNiA$T0mx}=i%#t>8J#7O3Ml}W% diff --git a/benchmark/core/__pycache__/report_generator.cpython-314.pyc b/benchmark/core/__pycache__/report_generator.cpython-314.pyc index 1f72f0904bcc792dc1882cedc5251f0b2f6353e9..e277879cd00af34ad82c1f4fdf9cf1ef2c637b81 100644 GIT binary patch delta 3421 zcmbtWZA_cj6~5QT-ydL%?SwDe5HQAI8=DXF?a)C>_{@d839XA~0->Y?%xg%~XlgQT zYtw35Q=K23rnOxwMQYVFX~mB!nlx!2Kl)=zvUP1TCb8z{HdUkhv#FD&o%_Civ5m7< z(=5Hu{W#A#_uO;OJ=b48Pp`j3tpTgWNbvVu!_>;J!yj0;HL5c<_?6}sO~Ws=9(YYV zjJ;joYj9Z?p<3-XcTLYcoi4vU@^lS>xY+5i$?Qy{%wM;OZ z2|F$r5oaPMC06?>Rd{EddIdbuAEz65tovuGnwSs z^@Ysjm-a{5=)}}08%{nlGm|_vH8j)X*&aRgKtnAMsO>ZvIW2iUwYs$g->mJ?S}?wi z9(bd+&a{TzI{Y$K`t9G;maBTT#OZxC`AYJqPrP6Ev7_Ujqx-jx?z=q`A8mf@n7v}W zZ*u(3$PdQS~lnXv>9K@R7 z^nHg8z(BwYKl9aLZ`XGR>-vqRemcl!w=Mokxvtkrb=}Q8%B9KH^&3r9YA@FHfBPF~ z9ap(Dm`mg!Veu)t?hFzvZ1wDjizKW{0E^(lS#@;H%V8d z&8X<|_6P=i0DAdj5GhfX!)VtNVj#7I^>OFmy3=IdQn_(oY5NNCAKm_ExS!g^R`f^= zB20=Q#EUK?+-P&cWMoX+&P5&YMr4|P0(+4QerckU&tlRMaT6iK|0OhvW;H#=PM_qAvvbDT)COF%DmC;T~LXpR2rx#D^|$58NH=vOCAV-q?Nkuw(4V*go;U zn!OK=ooD^CoQMzk*ZKGdxYbz&pLE_)Om;QXjac|Wj6gK;`7|b6*wDf zHonNaFCpmR_1G_CoGE@EVV}h(e#qekgiHxSqv!HvIj;N4R`^kOC%p=Hx*aY7DSnlh z<~kc3PI5Q}|LPug&++c}I6TgQ|Bn_E9G>Jb56K=!eGeNDJM$P#<|HZ`!2kE$?yvNUMg?xnmSyShilbMx^OUZ?2 zHW&H405*Mei$&Nl76sNPJK5X@I@i;ajVrfBnBw21TBx@c#1xuPgK&H_6- z_s*Gf=g!WZ-Jie9|NRbk_q$zohS%`Q;`*iZXYPt@`q~S>m4C&r!=AYlJ~q#y7PUv= zUwuD-T}zga!$Wr~+_!Y`&B|lTxCs{BA>NMQDBmRM?@+jiBwC17zeFdv9GUiL!DGxc zAi7{C*ku;oWPrPlr2l9Gq#H@HwPo6S3e5-Tdg~VKL%OkJG32P9kJq94T}&ik#@)@6 zHC{P|UTKK9TKxkJ=nSFdtbvH;8WCA(kn3?pn8M+vEy&Yw(;9)VYz}A1ECvvPVkSuQpco!B>289;(iW0NbZcbvu(fUxje(EBXYR0c96kQ%j!NTI-s6WoX#>)P zZk?PwY(2<3%NORw2|e0bzIuwWHdgTOr(9b#eWJ!-Y+FnvWCO)m$#U2yI^F0~vKE4d zj~*MJfp%}N%huri{8PN`4c;foTXG=RLr)0)>OEqct>%4E%llk4KeIKq19?APwVr9P zzTbR|zd*&3dr`57d3;kZDR%9-pjfr%qT+Bev7p#cp3ORptY9(d@97*wd`ao${ZY{w zG7CYK3U_?Tk@F2TD;jDnfABSl3)O0Df&clUvSQSx|3ZVGUcDC$ME|9Oh(g$S0ZSYa zhY#?cKPppUUe?abE4B0Dxl(ry)36t4_^s%w?c$fs0hhDVm-FXd=LE4d7CouOe3)o1bP( zaaHv>(wEriEymV#>sg$!ipc0CoWbt`u4NTH+Q?cRC1|vIokkbGNN8UvJ^GScaq3*F zwyM>E7VxD5t!X29C68i{vRYLuZkS2?Jzm8l2B^ViO{M0%8KRlM?Yxzsiqmk_MlNHN z_Zo4oYLVxg7vvgAN;Ys2HvfRJi}wyiTHSRu(t8Ptw0bS*eG59%=5LEz@?yilSo@S` z#;WXZ4*cH)k+1H4DDMbNn7$9eg9EP2^}6i-)Nt z6lMBi_o#HhRh2{;#eHZRD%cMUH->(c8YF8!i6IitW_SRR;ma+rBk-vUJb<4LZ|UKj z{&up@AwDvH^vpi+8)-j>4@Wj)FB4GgqrY*N40~W{4t7s6ivKK;x3AE6N;YB-CaGi`_5*t zj}PJr(Owb}B{W-P3J7i<$z^9oI0g`tV<=iVkGU)JON3C(N4hGB0a2!EdF zwSR(hAK_j0RjiZE)ZOz_R!M#k=*fGa`26&@ZT(CZQ#KfHcbbI{Q5?;x4|v zwp?C+^V;&t_qVT=*I59~S_!?VVc4`;ucKk|dx69}iZ#6PYMNGG!bf%V_bGLuI-0vm{|A(pAXfkY diff --git a/benchmark/core/benchmark_formatter.py b/benchmark/core/benchmark_formatter.py index afa5b45..627432b 100644 --- a/benchmark/core/benchmark_formatter.py +++ b/benchmark/core/benchmark_formatter.py @@ -267,6 +267,10 @@ def generate_pretty_results(input_file): } } + jobs_value = raw_results.get("system_info", {}).get("benchmark", {}).get("grimoire_css_jobs", None) + if jobs_value is not None: + pretty_results["metadata"]["system"]["grimoire_css_jobs"] = jobs_value + return pretty_results diff --git a/benchmark/core/report_generator.py b/benchmark/core/report_generator.py index b3264df..0135c1b 100644 --- a/benchmark/core/report_generator.py +++ b/benchmark/core/report_generator.py @@ -64,6 +64,10 @@ def generate_report(results): lines.append( f"Memory: {system_info.get('memory', {}).get('total_gb', 'Unknown')} GB") + jobs_value = system_info.get('benchmark', {}).get('grimoire_css_jobs', None) + if jobs_value is not None: + lines.append(f"GRIMOIRE_CSS_JOBS: {jobs_value}") + # Input summary lines.append("\nINPUT SUMMARY") lines.append("-" * 80) @@ -191,6 +195,10 @@ def generate_comparison_report(results): lines.append( f"Memory: {system_info.get('memory', {}).get('total_gb', 'Unknown')} GB") + jobs_value = system_info.get('benchmark', {}).get('grimoire_css_jobs', None) + if jobs_value is not None: + lines.append(f"GRIMOIRE_CSS_JOBS: {jobs_value}") + # Performance comparison lines.append("\nPERFORMANCE COMPARISON") lines.append("-" * 80) diff --git a/benchmark/main.py b/benchmark/main.py index b166b84..608ed43 100644 --- a/benchmark/main.py +++ b/benchmark/main.py @@ -29,6 +29,7 @@ import time import datetime import subprocess +import os from pathlib import Path from core.project_creator import create_benchmark_projects @@ -67,6 +68,20 @@ def parse_args(): def collect_system_info(): """Collect information about the system for benchmark context.""" + # Benchmark configuration (captured as part of system info so it is persisted + # into all output formats). + jobs_raw = os.environ.get("GRIMOIRE_CSS_JOBS") + jobs_value = None + if jobs_raw is not None: + jobs_raw = jobs_raw.strip() + if jobs_raw == "": + jobs_value = None + else: + try: + jobs_value = int(jobs_raw) + except ValueError: + jobs_value = jobs_raw + # Best-effort git metadata to make benchmark results reproducible. git_sha = None git_dirty = None @@ -90,6 +105,9 @@ def collect_system_info(): "version": platform.version(), "release": platform.release() }, + "benchmark": { + "grimoire_css_jobs": jobs_value, + }, "cpu": { "name": platform.processor() or platform.machine(), "cores_logical": psutil.cpu_count(logical=True), @@ -255,6 +273,8 @@ def main(): print(f"OS: {system_info['os']['name']} {system_info['os']['release']}") print(f"CPU: {system_info['cpu']['name']}") print(f"Memory: {system_info['memory']['total_gb']} GB") + jobs_value = system_info.get('benchmark', {}).get('grimoire_css_jobs', None) + print(f"GRIMOIRE_CSS_JOBS: {jobs_value if jobs_value is not None else '(unset)'}") # Run benchmarks framework_results = run_framework_benchmark(args.framework, system_info) diff --git a/benchmark/results/result_20250323_111448.json b/benchmark/results/result_20250323_111448.json deleted file mode 100644 index 2adf288..0000000 --- a/benchmark/results/result_20250323_111448.json +++ /dev/null @@ -1,108 +0,0 @@ -{ - "system_info": { - "os": { - "name": "Darwin", - "version": "Darwin Kernel Version 24.3.0: Thu Jan 2 20:24:23 PST 2025; root:xnu-11215.81.4~3/RELEASE_ARM64_T6020", - "release": "24.3.0" - }, - "cpu": { - "name": "arm", - "cores_logical": 12, - "cores_physical": 12 - }, - "memory": { - "total_gb": 32.0 - }, - "python_version": "3.13.2", - "timestamp": 1742724888.643092, - "timestamp_human": "2025-03-23 11:14:48" - }, - "grimoire": { - "input": { - "unique_class_count": 400006, - "total_input_size_bytes": 49187280, - "file_count": 100000 - }, - "output": { - "file_count": 10, - "total_size_bytes": 5296770, - "total_size_kb": 5172.626953125, - "avg_size_bytes": 529677.0, - "avg_size_kb": 517.2626953125 - }, - "process": { - "memory": { - "peak_bytes": 116604928, - "peak_mb": 111.203125, - "avg_bytes": 47982004.589147285, - "avg_mb": 45.75920542635659, - "std_dev_mb": 25.961544766980627 - }, - "cpu": { - "user_time": 0.755105886, - "system_time": 1.333121863, - "total_time": 2.0882277489999996 - }, - "io": { - "read_bytes": 49187280, - "read_mb": 46.90864562988281, - "write_bytes": 5296770, - "write_mb": 5.051393508911133 - } - }, - "throughput": { - "build_time_seconds": 2.09773588180542, - "classes_per_second": 190684.6345478603, - "memory_efficiency": 3597.0751721230854, - "bytes_processed_per_second": 23447794.56108978, - "bytes_generated_per_second": 2524993.754428859, - "cpu_utilization": 0.9954674309154511 - }, - "exit_code": 0, - "success": true - }, - "tailwind": { - "input": { - "unique_class_count": 400006, - "total_input_size_bytes": 49187280, - "file_count": 100000 - }, - "output": { - "file_count": 10, - "total_size_bytes": 5937710, - "total_size_kb": 5798.544921875, - "avg_size_bytes": 593771.0, - "avg_size_kb": 579.8544921875 - }, - "process": { - "memory": { - "peak_bytes": 361725952, - "peak_mb": 344.96875, - "avg_bytes": 191161685.33333334, - "avg_mb": 182.30598958333334, - "std_dev_mb": 74.08982503042134 - }, - "cpu": { - "user_time": 7.772634282, - "system_time": 60.89118616200001, - "total_time": 68.663820444 - }, - "io": { - "read_bytes": 49187280, - "read_mb": 46.90864562988281, - "write_bytes": 5937710, - "write_mb": 5.662641525268555 - } - }, - "throughput": { - "build_time_seconds": 10.575389862060547, - "classes_per_second": 37824.23203470074, - "memory_efficiency": 1159.5427122021922, - "bytes_processed_per_second": 4651107.9630700415, - "bytes_generated_per_second": 561464.8800137072, - "cpu_utilization": 6.492793300257707 - }, - "exit_code": 0, - "success": true - } -} \ No newline at end of file diff --git a/benchmark/results/result_20250323_111448_pretty.json b/benchmark/results/result_20250323_111448_pretty.json deleted file mode 100644 index b67bf1a..0000000 --- a/benchmark/results/result_20250323_111448_pretty.json +++ /dev/null @@ -1,118 +0,0 @@ -{ - "charts": [ - { - "title": "Grimoire CSS vs Tailwind CSS - Build Time", - "chartTitle": "Build Time", - "chartSubtitle": "Total time taken to compile CSS (lower is better)", - "chartId": "chart_time", - "highlightText": "5.0x faster", - "grimoireHeight": 16.860612448260003, - "tailwindHeight": 85.0, - "grimoireValue": "2.10s", - "tailwindValue": "10.58s", - "grimoireRawValue": 2.1, - "tailwindRawValue": 10.58 - }, - { - "title": "Grimoire CSS vs Tailwind CSS - Peak Memory Usage", - "chartTitle": "Peak Memory Usage", - "chartSubtitle": "Maximum memory consumed during compilation (lower is better)", - "chartId": "chart_peak_memory", - "highlightText": "3.1x less", - "grimoireHeight": 27.400353292870733, - "tailwindHeight": 85.0, - "grimoireValue": "111.2 MB", - "tailwindValue": "344.97 MB", - "grimoireRawValue": 111.2, - "tailwindRawValue": 344.97 - }, - { - "title": "Grimoire CSS vs Tailwind CSS - Average Memory Usage", - "chartTitle": "Average Memory Usage", - "chartSubtitle": "Average memory consumed during compilation (lower is better)", - "chartId": "chart_avg_memory", - "highlightText": "4.0x less", - "grimoireHeight": 21.33518745121853, - "tailwindHeight": 85.0, - "grimoireValue": "45.76 MB", - "tailwindValue": "182.31 MB", - "grimoireRawValue": 45.76, - "tailwindRawValue": 182.31 - }, - { - "title": "Grimoire CSS vs Tailwind CSS - CPU Usage (User Time)", - "chartTitle": "CPU Usage (User Time)", - "chartSubtitle": "CPU time spent in user mode during compilation (lower is better)", - "chartId": "chart_cpu_user", - "highlightText": "10.3x less", - "grimoireHeight": 8.257689475836834, - "tailwindHeight": 85.0, - "grimoireValue": "755.11ms", - "tailwindValue": "7.77s", - "grimoireRawValue": 0.76, - "tailwindRawValue": 7.77 - }, - { - "title": "Grimoire CSS vs Tailwind CSS - CPU Usage (System Time)", - "chartTitle": "CPU Usage (System Time)", - "chartSubtitle": "CPU time spent in system mode during compilation (lower is better)", - "chartId": "chart_cpu_system", - "highlightText": "45.7x less", - "grimoireHeight": 2, - "tailwindHeight": 85.0, - "grimoireValue": "1.33s", - "tailwindValue": "60.89s", - "grimoireRawValue": 1.33, - "tailwindRawValue": 60.89 - }, - { - "title": "Grimoire CSS vs Tailwind CSS - Output Size", - "chartTitle": "Output Size", - "chartSubtitle": "Size of the generated CSS file (lower is better)", - "chartId": "chart_output", - "highlightText": "1.1x less", - "grimoireHeight": 75.82476240840325, - "tailwindHeight": 85.0, - "grimoireValue": "5.05 MB", - "tailwindValue": "5.66 MB", - "grimoireRawValue": 5172.63, - "tailwindRawValue": 5798.54 - }, - { - "title": "Grimoire CSS vs Tailwind CSS - Processing Speed", - "chartTitle": "Processing Speed", - "chartSubtitle": "Number of utility classes processed per second (higher is better)", - "chartId": "chart_classes_per_second", - "highlightText": "5.0x faster", - "grimoireHeight": 85.0, - "tailwindHeight": 16.860612448260003, - "grimoireValue": "190684.63 classes/s", - "tailwindValue": "37824.23 classes/s", - "grimoireRawValue": 190684.63, - "tailwindRawValue": 37824.23 - }, - { - "title": "Grimoire CSS vs Tailwind CSS - Memory Efficiency", - "chartTitle": "Memory Efficiency", - "chartSubtitle": "Number of utility classes processed per MB of memory (higher is better)", - "chartId": "chart_memory_efficiency", - "highlightText": "3.1x more efficient", - "grimoireHeight": 85.0, - "tailwindHeight": 27.400353292870733, - "grimoireValue": "3597.08 classes/MB", - "tailwindValue": "1159.54 classes/MB", - "grimoireRawValue": 3597.08, - "tailwindRawValue": 1159.54 - } - ], - "metadata": { - "timestamp": 1742724888.643092, - "timestamp_human": "2025-03-23 11:14:48", - "system": { - "os": "Darwin 24.3.0", - "cpu": "arm", - "cores": "12 physical, 12 logical", - "memory": "32.0 GB" - } - } -} \ No newline at end of file diff --git a/benchmark/results/result_20251226_155926.json b/benchmark/results/result_20251227_012340.json similarity index 54% rename from benchmark/results/result_20251226_155926.json rename to benchmark/results/result_20251227_012340.json index b116051..36e19af 100644 --- a/benchmark/results/result_20251226_155926.json +++ b/benchmark/results/result_20251227_012340.json @@ -5,6 +5,9 @@ "version": "Darwin Kernel Version 25.2.0: Tue Nov 18 21:07:05 PST 2025; root:xnu-12377.61.12~1/RELEASE_ARM64_T6020", "release": "25.2.0" }, + "benchmark": { + "grimoire_css_jobs": 1 + }, "cpu": { "name": "arm", "cores_logical": 12, @@ -15,12 +18,12 @@ }, "psutil_version": "7.0.0", "git": { - "sha": "bafd6c9b745de683c9007c3ec0d40e900d23867c", + "sha": "8f60e2643076e9065a21408a98d0da64b5aea71b", "dirty": true }, "python_version": "3.14.2", - "timestamp": 1766761166.7450528, - "timestamp_human": "2025-12-26 15:59:26" + "timestamp": 1766795020.693991, + "timestamp_human": "2025-12-27 01:23:40" }, "grimoire": { "input": { @@ -37,35 +40,35 @@ }, "process": { "memory": { - "peak_bytes": 166019072, - "peak_mb": 158.328125, - "avg_bytes": 99309645.7721519, - "avg_mb": 94.7090585443038, + "peak_bytes": 164986880, + "peak_mb": 157.34375, + "avg_bytes": 86189106.9683258, + "avg_mb": 82.19633766968326, "measurement": "rss", - "rss_peak_bytes": 166019072, - "rss_peak_mb": 158.328125, - "rss_avg_bytes": 99309645.7721519, - "rss_avg_mb": 94.7090585443038, - "uss_peak_bytes": 138428416, - "uss_peak_mb": 132.015625, - "uss_avg_bytes": 74744637.56962025, - "uss_avg_mb": 71.2820411392405, + "rss_peak_bytes": 164986880, + "rss_peak_mb": 157.34375, + "rss_avg_bytes": 86189106.9683258, + "rss_avg_mb": 82.19633766968326, + "uss_peak_bytes": 138870784, + "uss_peak_mb": 132.4375, + "uss_avg_bytes": 66468405.28506787, + "uss_avg_mb": 63.38921097285068, "uss_is_complete": true, - "uss_partial_peak_bytes": 138428416, - "uss_partial_peak_mb": 132.015625, - "uss_partial_avg_bytes": 74744637.56962025, - "uss_partial_avg_mb": 71.2820411392405, + "uss_partial_peak_bytes": 138870784, + "uss_partial_peak_mb": 132.4375, + "uss_partial_avg_bytes": 66468405.28506787, + "uss_partial_avg_mb": 63.38921097285068, "uss_coverage_avg": 1.0, "uss_process_count_avg": 1, "uss_process_count_max": 1, "uss_available_count_avg": 1, "uss_available_count_max": 1, - "std_dev_mb": 39.95781605477421 + "std_dev_mb": 51.10911577288717 }, "cpu": { - "user_time": 0.835245733, - "system_time": 1.974512151, - "total_time": 2.809757884 + "user_time": 0.807057117, + "system_time": 2.02749662, + "total_time": 2.8345537370000002 }, "io": { "read_bytes": 49487280, @@ -75,11 +78,11 @@ } }, "throughput": { - "build_time_seconds": 2.8290228843688965, - "classes_per_second": 141393.69540279772, - "memory_efficiency": 2526.4367906839043, - "bytes_processed_per_second": 17492711.09591597, - "bytes_generated_per_second": 1872307.2299153986 + "build_time_seconds": 3.7795708179473877, + "classes_per_second": 105833.70950494203, + "memory_efficiency": 2542.2427010923534, + "bytes_processed_per_second": 13093359.638879737, + "bytes_generated_per_second": 1401428.959830045 }, "exit_code": 0, "success": true, @@ -106,16 +109,16 @@ }, "process": { "memory": { - "peak_bytes": 317325312, - "peak_mb": 302.625, - "avg_bytes": 165314706.2857143, - "avg_mb": 157.65638950892858, - "std_dev_mb": 75.3255305454726 + "peak_bytes": 321273856, + "peak_mb": 306.390625, + "avg_bytes": 172912465.2890995, + "avg_mb": 164.9021771327014, + "std_dev_mb": 71.15805121031616 }, "cpu": { - "user_time": 8.904139656, - "system_time": 21.150147192, - "total_time": 30.054286848 + "user_time": 8.919657383, + "system_time": 42.144116483, + "total_time": 51.06377386599999 }, "io": { "read_bytes": 49487280, @@ -125,11 +128,11 @@ } }, "throughput": { - "build_time_seconds": 8.003226041793823, - "classes_per_second": 49980.59506393045, - "memory_efficiency": 1321.7876910367618, - "bytes_processed_per_second": 6183416.504990785, - "bytes_generated_per_second": 741914.5690740901 + "build_time_seconds": 9.40093445777893, + "classes_per_second": 42549.59991440102, + "memory_efficiency": 1305.5425569891377, + "bytes_processed_per_second": 5264080.950915584, + "bytes_generated_per_second": 631608.4881420231 }, "exit_code": 0, "success": true diff --git a/benchmark/results/result_20251227_012340.txt b/benchmark/results/result_20251227_012340.txt new file mode 100644 index 0000000..6478fa0 --- /dev/null +++ b/benchmark/results/result_20251227_012340.txt @@ -0,0 +1,126 @@ + + +================================================================================================================================================================ +GRIMOIRE PERFORMANCE BENCHMARK REPORT +================================================================================ +Generated: 2025-12-27 01:23:40 + +SYSTEM INFORMATION +-------------------------------------------------------------------------------- +OS: Darwin 25.2.0 +CPU: arm +Cores: 12 physical, 12 logical +Memory: 32.0 GB +GRIMOIRE_CSS_JOBS: 1 + +INPUT SUMMARY +-------------------------------------------------------------------------------- +Unique Utility Classes: 400006 +Total Input Size: 47.19 MB +Input HTML Files: 100000 + +PERFORMANCE METRICS +-------------------------------------------------------------------------------- +Build Time: 3.78 s +Processing Speed: 105833.71 classes/second + +MEMORY USAGE +-------------------------------------------------------------------------------- +Peak Memory: 157.34 MB +Average Memory: 82.20 MB +Peak RSS: 157.34 MB +Average RSS: 82.20 MB +Peak USS: 132.44 MB +Average USS: 63.39 MB +Primary Memory Metric: rss +Memory Efficiency: 2542.24 classes/MB +Memory Stability (Std Dev): 51.11 MB +Memory per Class: 412.46 bytes/class + +CPU USAGE +-------------------------------------------------------------------------------- +User CPU Time: 807.06 ms +System CPU Time: 2.03 s +Total CPU Time: 2.83 s + +I/O & OUTPUT METRICS +-------------------------------------------------------------------------------- +Total Read: 47.19 MB +Total Written: 5.05 MB +Output File Count: 10 +Output Size: 5.05 MB + +================================================================================ +TAILWIND PERFORMANCE BENCHMARK REPORT +================================================================================ +Generated: 2025-12-27 01:23:40 + +SYSTEM INFORMATION +-------------------------------------------------------------------------------- +OS: Darwin 25.2.0 +CPU: arm +Cores: 12 physical, 12 logical +Memory: 32.0 GB +GRIMOIRE_CSS_JOBS: 1 + +INPUT SUMMARY +-------------------------------------------------------------------------------- +Unique Utility Classes: 400006 +Total Input Size: 47.19 MB +Input HTML Files: 100000 + +PERFORMANCE METRICS +-------------------------------------------------------------------------------- +Build Time: 9.40 s +Processing Speed: 42549.60 classes/second + +MEMORY USAGE +-------------------------------------------------------------------------------- +Peak Memory: 306.39 MB +Average Memory: 164.90 MB +Memory Efficiency: 1305.54 classes/MB +Memory Stability (Std Dev): 71.16 MB +Memory per Class: 803.17 bytes/class + +CPU USAGE +-------------------------------------------------------------------------------- +User CPU Time: 8.92 s +System CPU Time: 42.14 s +Total CPU Time: 51.06 s + +I/O & OUTPUT METRICS +-------------------------------------------------------------------------------- +Total Read: 47.19 MB +Total Written: 5.66 MB +Output File Count: 10 +Output Size: 5.66 MB + +================================================================================ +CSS FRAMEWORKS PERFORMANCE COMPARISON +================================================================================ +Generated: 2025-12-27 01:23:40 + +SYSTEM INFORMATION +-------------------------------------------------------------------------------- +OS: Darwin 25.2.0 +CPU: arm +Cores: 12 physical, 12 logical +Memory: 32.0 GB +GRIMOIRE_CSS_JOBS: 1 + +PERFORMANCE COMPARISON +-------------------------------------------------------------------------------- +Metric | Grimoire CSS | Tailwind CSS | Difference | Ratio (G/T) +------------------------------------------------------------------------------------------------- +Build Time | 3.78 s | 9.40 s | 5.62 s | 2.49x +Classes/sec | 105833.71 | 42549.60 | 63284.11 | 2.49x +Peak Memory | 157.34 MB | 306.39 MB | 149.05 MB | 1.95x +Memory Efficiency | 2542.24 classes/MB | 1305.54 classes/MB | 1236.70 classes/MB | 1.95x +Output Size | 5.05 MB | 5.66 MB | 625.89 KB | 1.12x + +Notes: +- Build Time: lower is better +- Classes/sec: higher is better +- Peak Memory: lower is better +- Memory Efficiency: higher is better +- Output Size: lower is better \ No newline at end of file diff --git a/benchmark/results/result_20251226_155926_pretty.json b/benchmark/results/result_20251227_012340_pretty.json similarity index 62% rename from benchmark/results/result_20251226_155926_pretty.json rename to benchmark/results/result_20251227_012340_pretty.json index 9681650..b69ac99 100644 --- a/benchmark/results/result_20251226_155926_pretty.json +++ b/benchmark/results/result_20251227_012340_pretty.json @@ -5,13 +5,13 @@ "chartTitle": "Build Time", "chartSubtitle": "Total time taken to compile CSS (lower is better)", "chartId": "chart_time", - "highlightText": "2.8x faster", - "grimoireHeight": 30.04625183839722, + "highlightText": "2.5x faster", + "grimoireHeight": 34.17357295366463, "tailwindHeight": 85.0, - "grimoireValue": "2.83s", - "tailwindValue": "8.00s", - "grimoireRawValue": 2.83, - "tailwindRawValue": 8.0 + "grimoireValue": "3.78s", + "tailwindValue": "9.40s", + "grimoireRawValue": 3.78, + "tailwindRawValue": 9.4 }, { "title": "Grimoire CSS vs Tailwind CSS - Peak Memory Usage", @@ -19,51 +19,51 @@ "chartSubtitle": "Maximum memory consumed during compilation (lower is better)", "chartId": "chart_peak_memory", "highlightText": "1.9x less", - "grimoireHeight": 44.47051838083437, + "grimoireHeight": 43.650874598398694, "tailwindHeight": 85.0, - "grimoireValue": "158.33 MB", - "tailwindValue": "302.62 MB", - "grimoireRawValue": 158.33, - "tailwindRawValue": 302.62 + "grimoireValue": "157.34 MB", + "tailwindValue": "306.39 MB", + "grimoireRawValue": 157.34, + "tailwindRawValue": 306.39 }, { "title": "Grimoire CSS vs Tailwind CSS - Average Memory Usage", "chartTitle": "Average Memory Usage", "chartSubtitle": "Average memory consumed during compilation (lower is better)", "chartId": "chart_avg_memory", - "highlightText": "1.7x less", - "grimoireHeight": 51.062123148582636, + "highlightText": "2.0x less", + "grimoireHeight": 42.36868683850482, "tailwindHeight": 85.0, - "grimoireValue": "94.71 MB", - "tailwindValue": "157.66 MB", - "grimoireRawValue": 94.71, - "tailwindRawValue": 157.66 + "grimoireValue": "82.2 MB", + "tailwindValue": "164.9 MB", + "grimoireRawValue": 82.2, + "tailwindRawValue": 164.9 }, { "title": "Grimoire CSS vs Tailwind CSS - CPU Usage (User Time)", "chartTitle": "CPU Usage (User Time)", "chartSubtitle": "CPU time spent in user mode during compilation (lower is better)", "chartId": "chart_cpu_user", - "highlightText": "10.7x less", - "grimoireHeight": 7.973357342521, + "highlightText": "11.1x less", + "grimoireHeight": 7.690862103710917, "tailwindHeight": 85.0, - "grimoireValue": "835.25ms", - "tailwindValue": "8.90s", - "grimoireRawValue": 0.84, - "tailwindRawValue": 8.9 + "grimoireValue": "807.06ms", + "tailwindValue": "8.92s", + "grimoireRawValue": 0.81, + "tailwindRawValue": 8.92 }, { "title": "Grimoire CSS vs Tailwind CSS - CPU Usage (System Time)", "chartTitle": "CPU Usage (System Time)", "chartSubtitle": "CPU time spent in system mode during compilation (lower is better)", "chartId": "chart_cpu_system", - "highlightText": "10.7x less", - "grimoireHeight": 7.935336397965245, + "highlightText": "20.8x less", + "grimoireHeight": 4.089235392311926, "tailwindHeight": 85.0, - "grimoireValue": "1.97s", - "tailwindValue": "21.15s", - "grimoireRawValue": 1.97, - "tailwindRawValue": 21.15 + "grimoireValue": "2.03s", + "tailwindValue": "42.14s", + "grimoireRawValue": 2.03, + "tailwindRawValue": 42.14 }, { "title": "Grimoire CSS vs Tailwind CSS - Output Size", @@ -83,13 +83,13 @@ "chartTitle": "Processing Speed", "chartSubtitle": "Number of utility classes processed per second (higher is better)", "chartId": "chart_classes_per_second", - "highlightText": "2.8x faster", + "highlightText": "2.5x faster", "grimoireHeight": 85.0, - "tailwindHeight": 30.04625183839722, - "grimoireValue": "141393.70 classes/s", - "tailwindValue": "49980.60 classes/s", - "grimoireRawValue": 141393.7, - "tailwindRawValue": 49980.6 + "tailwindHeight": 34.17357295366463, + "grimoireValue": "105833.71 classes/s", + "tailwindValue": "42549.60 classes/s", + "grimoireRawValue": 105833.71, + "tailwindRawValue": 42549.6 }, { "title": "Grimoire CSS vs Tailwind CSS - Memory Efficiency", @@ -98,21 +98,22 @@ "chartId": "chart_memory_efficiency", "highlightText": "1.9x more efficient", "grimoireHeight": 85.0, - "tailwindHeight": 44.47051838083437, - "grimoireValue": "2526.44 classes/MB", - "tailwindValue": "1321.79 classes/MB", - "grimoireRawValue": 2526.44, - "tailwindRawValue": 1321.79 + "tailwindHeight": 43.650874598398694, + "grimoireValue": "2542.24 classes/MB", + "tailwindValue": "1305.54 classes/MB", + "grimoireRawValue": 2542.24, + "tailwindRawValue": 1305.54 } ], "metadata": { - "timestamp": 1766761166.7450528, - "timestamp_human": "2025-12-26 15:59:26", + "timestamp": 1766795020.693991, + "timestamp_human": "2025-12-27 01:23:40", "system": { "os": "Darwin 25.2.0", "cpu": "arm", "cores": "12 physical, 12 logical", - "memory": "32.0 GB" + "memory": "32.0 GB", + "grimoire_css_jobs": 1 } } } \ No newline at end of file diff --git a/benchmark/results/result_20251227_012409.json b/benchmark/results/result_20251227_012409.json new file mode 100644 index 0000000..a05142f --- /dev/null +++ b/benchmark/results/result_20251227_012409.json @@ -0,0 +1,140 @@ +{ + "system_info": { + "os": { + "name": "Darwin", + "version": "Darwin Kernel Version 25.2.0: Tue Nov 18 21:07:05 PST 2025; root:xnu-12377.61.12~1/RELEASE_ARM64_T6020", + "release": "25.2.0" + }, + "benchmark": { + "grimoire_css_jobs": 2 + }, + "cpu": { + "name": "arm", + "cores_logical": 12, + "cores_physical": 12 + }, + "memory": { + "total_gb": 32.0 + }, + "psutil_version": "7.0.0", + "git": { + "sha": "8f60e2643076e9065a21408a98d0da64b5aea71b", + "dirty": true + }, + "python_version": "3.14.2", + "timestamp": 1766795049.0435998, + "timestamp_human": "2025-12-27 01:24:09" + }, + "grimoire": { + "input": { + "unique_class_count": 400006, + "total_input_size_bytes": 49487280, + "file_count": 100000 + }, + "output": { + "file_count": 10, + "total_size_bytes": 5296800, + "total_size_kb": 5172.65625, + "avg_size_bytes": 529680.0, + "avg_size_kb": 517.265625 + }, + "process": { + "memory": { + "peak_bytes": 156024832, + "peak_mb": 148.796875, + "avg_bytes": 96777847.82978724, + "avg_mb": 92.29454787234043, + "measurement": "rss", + "rss_peak_bytes": 156024832, + "rss_peak_mb": 148.796875, + "rss_avg_bytes": 96777847.82978724, + "rss_avg_mb": 92.29454787234043, + "uss_peak_bytes": 91914240, + "uss_peak_mb": 87.65625, + "uss_avg_bytes": 44642042.55319149, + "uss_avg_mb": 42.57396941489362, + "uss_is_complete": true, + "uss_partial_peak_bytes": 91914240, + "uss_partial_peak_mb": 87.65625, + "uss_partial_avg_bytes": 44642042.55319149, + "uss_partial_avg_mb": 42.57396941489362, + "uss_coverage_avg": 1.0, + "uss_process_count_avg": 1, + "uss_process_count_max": 1, + "uss_available_count_avg": 1, + "uss_available_count_max": 1, + "std_dev_mb": 42.757697156760315 + }, + "cpu": { + "user_time": 0.8715153340000001, + "system_time": 2.1863928049999997, + "total_time": 3.057908139 + }, + "io": { + "read_bytes": 49487280, + "read_mb": 47.19474792480469, + "write_bytes": 5296800, + "write_mb": 5.051422119140625 + } + }, + "throughput": { + "build_time_seconds": 1.5986220836639404, + "classes_per_second": 250219.23823497523, + "memory_efficiency": 2688.2688228499424, + "bytes_processed_per_second": 30956209.41666106, + "bytes_generated_per_second": 3313353.452405756 + }, + "exit_code": 0, + "success": true, + "run": { + "executable": "../target/release/grimoire_css", + "argv": [ + "../target/release/grimoire_css", + "build" + ] + } + }, + "tailwind": { + "input": { + "unique_class_count": 400006, + "total_input_size_bytes": 49487280, + "file_count": 100000 + }, + "output": { + "file_count": 10, + "total_size_bytes": 5937710, + "total_size_kb": 5798.544921875, + "avg_size_bytes": 593771.0, + "avg_size_kb": 579.8544921875 + }, + "process": { + "memory": { + "peak_bytes": 325632000, + "peak_mb": 310.546875, + "avg_bytes": 172060098.1642512, + "avg_mb": 164.08929649758454, + "std_dev_mb": 70.69412801340499 + }, + "cpu": { + "user_time": 8.739942736000001, + "system_time": 42.878009256999995, + "total_time": 51.617951993 + }, + "io": { + "read_bytes": 49487280, + "read_mb": 47.19474792480469, + "write_bytes": 5937710, + "write_mb": 5.662641525268555 + } + }, + "throughput": { + "build_time_seconds": 9.343071699142456, + "classes_per_second": 42813.114667279515, + "memory_efficiency": 1288.0696352201257, + "bytes_processed_per_second": 5296682.032798928, + "bytes_generated_per_second": 635520.1149259066 + }, + "exit_code": 0, + "success": true + } +} \ No newline at end of file diff --git a/benchmark/results/result_20251226_155926.txt b/benchmark/results/result_20251227_012409.txt similarity index 72% rename from benchmark/results/result_20251226_155926.txt rename to benchmark/results/result_20251227_012409.txt index 649923c..b70c755 100644 --- a/benchmark/results/result_20251226_155926.txt +++ b/benchmark/results/result_20251227_012409.txt @@ -3,7 +3,7 @@ ================================================================================================================================================================ GRIMOIRE PERFORMANCE BENCHMARK REPORT ================================================================================ -Generated: 2025-12-26 15:59:26 +Generated: 2025-12-27 01:24:09 SYSTEM INFORMATION -------------------------------------------------------------------------------- @@ -11,6 +11,7 @@ OS: Darwin 25.2.0 CPU: arm Cores: 12 physical, 12 logical Memory: 32.0 GB +GRIMOIRE_CSS_JOBS: 2 INPUT SUMMARY -------------------------------------------------------------------------------- @@ -20,27 +21,27 @@ Input HTML Files: 100000 PERFORMANCE METRICS -------------------------------------------------------------------------------- -Build Time: 2.83 s -Processing Speed: 141393.70 classes/second +Build Time: 1.60 s +Processing Speed: 250219.24 classes/second MEMORY USAGE -------------------------------------------------------------------------------- -Peak Memory: 158.33 MB -Average Memory: 94.71 MB -Peak RSS: 158.33 MB -Average RSS: 94.71 MB -Peak USS: 132.02 MB -Average USS: 71.28 MB +Peak Memory: 148.80 MB +Average Memory: 92.29 MB +Peak RSS: 148.80 MB +Average RSS: 92.29 MB +Peak USS: 87.66 MB +Average USS: 42.57 MB Primary Memory Metric: rss -Memory Efficiency: 2526.44 classes/MB -Memory Stability (Std Dev): 39.96 MB -Memory per Class: 415.04 bytes/class +Memory Efficiency: 2688.27 classes/MB +Memory Stability (Std Dev): 42.76 MB +Memory per Class: 390.06 bytes/class CPU USAGE -------------------------------------------------------------------------------- -User CPU Time: 835.25 ms -System CPU Time: 1.97 s -Total CPU Time: 2.81 s +User CPU Time: 871.52 ms +System CPU Time: 2.19 s +Total CPU Time: 3.06 s I/O & OUTPUT METRICS -------------------------------------------------------------------------------- @@ -52,7 +53,7 @@ Output Size: 5.05 MB ================================================================================ TAILWIND PERFORMANCE BENCHMARK REPORT ================================================================================ -Generated: 2025-12-26 15:59:26 +Generated: 2025-12-27 01:24:09 SYSTEM INFORMATION -------------------------------------------------------------------------------- @@ -60,6 +61,7 @@ OS: Darwin 25.2.0 CPU: arm Cores: 12 physical, 12 logical Memory: 32.0 GB +GRIMOIRE_CSS_JOBS: 2 INPUT SUMMARY -------------------------------------------------------------------------------- @@ -69,22 +71,22 @@ Input HTML Files: 100000 PERFORMANCE METRICS -------------------------------------------------------------------------------- -Build Time: 8.00 s -Processing Speed: 49980.60 classes/second +Build Time: 9.34 s +Processing Speed: 42813.11 classes/second MEMORY USAGE -------------------------------------------------------------------------------- -Peak Memory: 302.62 MB -Average Memory: 157.66 MB -Memory Efficiency: 1321.79 classes/MB -Memory Stability (Std Dev): 75.33 MB -Memory per Class: 793.30 bytes/class +Peak Memory: 310.55 MB +Average Memory: 164.09 MB +Memory Efficiency: 1288.07 classes/MB +Memory Stability (Std Dev): 70.69 MB +Memory per Class: 814.07 bytes/class CPU USAGE -------------------------------------------------------------------------------- -User CPU Time: 8.90 s -System CPU Time: 21.15 s -Total CPU Time: 30.05 s +User CPU Time: 8.74 s +System CPU Time: 42.88 s +Total CPU Time: 51.62 s I/O & OUTPUT METRICS -------------------------------------------------------------------------------- @@ -96,7 +98,7 @@ Output Size: 5.66 MB ================================================================================ CSS FRAMEWORKS PERFORMANCE COMPARISON ================================================================================ -Generated: 2025-12-26 15:59:26 +Generated: 2025-12-27 01:24:09 SYSTEM INFORMATION -------------------------------------------------------------------------------- @@ -104,15 +106,16 @@ OS: Darwin 25.2.0 CPU: arm Cores: 12 physical, 12 logical Memory: 32.0 GB +GRIMOIRE_CSS_JOBS: 2 PERFORMANCE COMPARISON -------------------------------------------------------------------------------- Metric | Grimoire CSS | Tailwind CSS | Difference | Ratio (G/T) ------------------------------------------------------------------------------------------------- -Build Time | 2.83 s | 8.00 s | 5.17 s | 2.83x -Classes/sec | 141393.70 | 49980.60 | 91413.10 | 2.83x -Peak Memory | 158.33 MB | 302.62 MB | 144.30 MB | 1.91x -Memory Efficiency | 2526.44 classes/MB | 1321.79 classes/MB | 1204.65 classes/MB | 1.91x +Build Time | 1.60 s | 9.34 s | 7.74 s | 5.84x +Classes/sec | 250219.24 | 42813.11 | 207406.12 | 5.84x +Peak Memory | 148.80 MB | 310.55 MB | 161.75 MB | 2.09x +Memory Efficiency | 2688.27 classes/MB | 1288.07 classes/MB | 1400.20 classes/MB | 2.09x Output Size | 5.05 MB | 5.66 MB | 625.89 KB | 1.12x Notes: diff --git a/benchmark/results/result_20251226_155808_pretty.json b/benchmark/results/result_20251227_012409_pretty.json similarity index 60% rename from benchmark/results/result_20251226_155808_pretty.json rename to benchmark/results/result_20251227_012409_pretty.json index bd49d8d..7ab91a7 100644 --- a/benchmark/results/result_20251226_155808_pretty.json +++ b/benchmark/results/result_20251227_012409_pretty.json @@ -5,65 +5,65 @@ "chartTitle": "Build Time", "chartSubtitle": "Total time taken to compile CSS (lower is better)", "chartId": "chart_time", - "highlightText": "5.7x faster", - "grimoireHeight": 14.791126688824901, + "highlightText": "5.8x faster", + "grimoireHeight": 14.543704842156655, "tailwindHeight": 85.0, - "grimoireValue": "1.38s", - "tailwindValue": "7.95s", - "grimoireRawValue": 1.38, - "tailwindRawValue": 7.95 + "grimoireValue": "1.60s", + "tailwindValue": "9.34s", + "grimoireRawValue": 1.6, + "tailwindRawValue": 9.34 }, { "title": "Grimoire CSS vs Tailwind CSS - Peak Memory Usage", "chartTitle": "Peak Memory Usage", "chartSubtitle": "Maximum memory consumed during compilation (lower is better)", "chartId": "chart_peak_memory", - "highlightText": "1.6x less", - "grimoireHeight": 54.18586789554532, + "highlightText": "2.1x less", + "grimoireHeight": 40.72729559748427, "tailwindHeight": 85.0, - "grimoireValue": "194.53 MB", - "tailwindValue": "305.16 MB", - "grimoireRawValue": 194.53, - "tailwindRawValue": 305.16 + "grimoireValue": "148.8 MB", + "tailwindValue": "310.55 MB", + "grimoireRawValue": 148.8, + "tailwindRawValue": 310.55 }, { "title": "Grimoire CSS vs Tailwind CSS - Average Memory Usage", "chartTitle": "Average Memory Usage", "chartSubtitle": "Average memory consumed during compilation (lower is better)", "chartId": "chart_avg_memory", - "highlightText": "1.7x less", - "grimoireHeight": 48.79584174256903, + "highlightText": "1.8x less", + "grimoireHeight": 47.80955697049026, "tailwindHeight": 85.0, - "grimoireValue": "90.07 MB", - "tailwindValue": "156.9 MB", - "grimoireRawValue": 90.07, - "tailwindRawValue": 156.9 + "grimoireValue": "92.29 MB", + "tailwindValue": "164.09 MB", + "grimoireRawValue": 92.29, + "tailwindRawValue": 164.09 }, { "title": "Grimoire CSS vs Tailwind CSS - CPU Usage (User Time)", "chartTitle": "CPU Usage (User Time)", "chartSubtitle": "CPU time spent in user mode during compilation (lower is better)", "chartId": "chart_cpu_user", - "highlightText": "9.0x less", - "grimoireHeight": 9.398148677893031, + "highlightText": "10.0x less", + "grimoireHeight": 8.475891161719849, "tailwindHeight": 85.0, - "grimoireValue": "977.39ms", - "tailwindValue": "8.84s", - "grimoireRawValue": 0.98, - "tailwindRawValue": 8.84 + "grimoireValue": "871.52ms", + "tailwindValue": "8.74s", + "grimoireRawValue": 0.87, + "tailwindRawValue": 8.74 }, { "title": "Grimoire CSS vs Tailwind CSS - CPU Usage (System Time)", "chartTitle": "CPU Usage (System Time)", "chartSubtitle": "CPU time spent in system mode during compilation (lower is better)", "chartId": "chart_cpu_system", - "highlightText": "4.2x less", - "grimoireHeight": 20.177199349796638, + "highlightText": "19.6x less", + "grimoireHeight": 4.334235465809559, "tailwindHeight": 85.0, - "grimoireValue": "5.16s", - "tailwindValue": "21.72s", - "grimoireRawValue": 5.16, - "tailwindRawValue": 21.72 + "grimoireValue": "2.19s", + "tailwindValue": "42.88s", + "grimoireRawValue": 2.19, + "tailwindRawValue": 42.88 }, { "title": "Grimoire CSS vs Tailwind CSS - Output Size", @@ -83,36 +83,37 @@ "chartTitle": "Processing Speed", "chartSubtitle": "Number of utility classes processed per second (higher is better)", "chartId": "chart_classes_per_second", - "highlightText": "5.7x faster", + "highlightText": "5.8x faster", "grimoireHeight": 85.0, - "tailwindHeight": 14.791126688824901, - "grimoireValue": "289229.43 classes/s", - "tailwindValue": "50329.76 classes/s", - "grimoireRawValue": 289229.43, - "tailwindRawValue": 50329.76 + "tailwindHeight": 14.543704842156655, + "grimoireValue": "250219.24 classes/s", + "tailwindValue": "42813.11 classes/s", + "grimoireRawValue": 250219.24, + "tailwindRawValue": 42813.11 }, { "title": "Grimoire CSS vs Tailwind CSS - Memory Efficiency", "chartTitle": "Memory Efficiency", "chartSubtitle": "Number of utility classes processed per MB of memory (higher is better)", "chartId": "chart_memory_efficiency", - "highlightText": "1.6x more efficient", + "highlightText": "2.1x more efficient", "grimoireHeight": 85.0, - "tailwindHeight": 54.18586789554531, - "grimoireValue": "2056.26 classes/MB", - "tailwindValue": "1310.82 classes/MB", - "grimoireRawValue": 2056.26, - "tailwindRawValue": 1310.82 + "tailwindHeight": 40.72729559748427, + "grimoireValue": "2688.27 classes/MB", + "tailwindValue": "1288.07 classes/MB", + "grimoireRawValue": 2688.27, + "tailwindRawValue": 1288.07 } ], "metadata": { - "timestamp": 1766761088.047711, - "timestamp_human": "2025-12-26 15:58:08", + "timestamp": 1766795049.0435998, + "timestamp_human": "2025-12-27 01:24:09", "system": { "os": "Darwin 25.2.0", "cpu": "arm", "cores": "12 physical, 12 logical", - "memory": "32.0 GB" + "memory": "32.0 GB", + "grimoire_css_jobs": 2 } } } \ No newline at end of file diff --git a/benchmark/results/result_20251227_012425.json b/benchmark/results/result_20251227_012425.json new file mode 100644 index 0000000..6e7736b --- /dev/null +++ b/benchmark/results/result_20251227_012425.json @@ -0,0 +1,140 @@ +{ + "system_info": { + "os": { + "name": "Darwin", + "version": "Darwin Kernel Version 25.2.0: Tue Nov 18 21:07:05 PST 2025; root:xnu-12377.61.12~1/RELEASE_ARM64_T6020", + "release": "25.2.0" + }, + "benchmark": { + "grimoire_css_jobs": 4 + }, + "cpu": { + "name": "arm", + "cores_logical": 12, + "cores_physical": 12 + }, + "memory": { + "total_gb": 32.0 + }, + "psutil_version": "7.0.0", + "git": { + "sha": "8f60e2643076e9065a21408a98d0da64b5aea71b", + "dirty": true + }, + "python_version": "3.14.2", + "timestamp": 1766795065.6670752, + "timestamp_human": "2025-12-27 01:24:25" + }, + "grimoire": { + "input": { + "unique_class_count": 400006, + "total_input_size_bytes": 49487280, + "file_count": 100000 + }, + "output": { + "file_count": 10, + "total_size_bytes": 5296800, + "total_size_kb": 5172.65625, + "avg_size_bytes": 529680.0, + "avg_size_kb": 517.265625 + }, + "process": { + "memory": { + "peak_bytes": 267829248, + "peak_mb": 255.421875, + "avg_bytes": 127034514.28571428, + "avg_mb": 121.14955357142857, + "measurement": "rss", + "rss_peak_bytes": 267829248, + "rss_peak_mb": 255.421875, + "rss_avg_bytes": 127034514.28571428, + "rss_avg_mb": 121.14955357142857, + "uss_peak_bytes": 149585920, + "uss_peak_mb": 142.65625, + "uss_avg_bytes": 67461822.17142858, + "uss_avg_mb": 64.33660714285715, + "uss_is_complete": true, + "uss_partial_peak_bytes": 149585920, + "uss_partial_peak_mb": 142.65625, + "uss_partial_avg_bytes": 67461822.17142858, + "uss_partial_avg_mb": 64.33660714285715, + "uss_coverage_avg": 0.9859154929577465, + "uss_process_count_avg": 1, + "uss_process_count_max": 1, + "uss_available_count_avg": 0.9859154929577465, + "uss_available_count_max": 1, + "std_dev_mb": 85.23104615436908 + }, + "cpu": { + "user_time": 0.922854154, + "system_time": 2.790858709, + "total_time": 3.713712863 + }, + "io": { + "read_bytes": 49487280, + "read_mb": 47.19474792480469, + "write_bytes": 5296800, + "write_mb": 5.051422119140625 + } + }, + "throughput": { + "build_time_seconds": 1.2039422988891602, + "classes_per_second": 332246.8197762243, + "memory_efficiency": 1566.0600721844987, + "bytes_processed_per_second": 41104361.933009885, + "bytes_generated_per_second": 4399546.394280848 + }, + "exit_code": 0, + "success": true, + "run": { + "executable": "../target/release/grimoire_css", + "argv": [ + "../target/release/grimoire_css", + "build" + ] + } + }, + "tailwind": { + "input": { + "unique_class_count": 400006, + "total_input_size_bytes": 49487280, + "file_count": 100000 + }, + "output": { + "file_count": 10, + "total_size_bytes": 5937710, + "total_size_kb": 5798.544921875, + "avg_size_bytes": 593771.0, + "avg_size_kb": 579.8544921875 + }, + "process": { + "memory": { + "peak_bytes": 317636608, + "peak_mb": 302.921875, + "avg_bytes": 173636806.90647483, + "avg_mb": 165.5929631294964, + "std_dev_mb": 70.57462560423957 + }, + "cpu": { + "user_time": 8.718745665, + "system_time": 43.216031122, + "total_time": 51.934776787 + }, + "io": { + "read_bytes": 49487280, + "read_mb": 47.19474792480469, + "write_bytes": 5937710, + "write_mb": 5.662641525268555 + } + }, + "throughput": { + "build_time_seconds": 9.371271133422852, + "classes_per_second": 42684.28416006122, + "memory_efficiency": 1320.4922886470315, + "bytes_processed_per_second": 5280743.593417385, + "bytes_generated_per_second": 633607.7481338708 + }, + "exit_code": 0, + "success": true + } +} \ No newline at end of file diff --git a/benchmark/results/result_20251226_155808.txt b/benchmark/results/result_20251227_012425.txt similarity index 72% rename from benchmark/results/result_20251226_155808.txt rename to benchmark/results/result_20251227_012425.txt index 48919f6..f9a9dc9 100644 --- a/benchmark/results/result_20251226_155808.txt +++ b/benchmark/results/result_20251227_012425.txt @@ -3,7 +3,7 @@ ================================================================================================================================================================ GRIMOIRE PERFORMANCE BENCHMARK REPORT ================================================================================ -Generated: 2025-12-26 15:58:08 +Generated: 2025-12-27 01:24:25 SYSTEM INFORMATION -------------------------------------------------------------------------------- @@ -11,6 +11,7 @@ OS: Darwin 25.2.0 CPU: arm Cores: 12 physical, 12 logical Memory: 32.0 GB +GRIMOIRE_CSS_JOBS: 4 INPUT SUMMARY -------------------------------------------------------------------------------- @@ -20,27 +21,27 @@ Input HTML Files: 100000 PERFORMANCE METRICS -------------------------------------------------------------------------------- -Build Time: 1.38 s -Processing Speed: 289229.43 classes/second +Build Time: 1.20 s +Processing Speed: 332246.82 classes/second MEMORY USAGE -------------------------------------------------------------------------------- -Peak Memory: 194.53 MB -Average Memory: 90.07 MB -Peak RSS: 194.53 MB -Average RSS: 90.07 MB -Peak USS: 103.83 MB -Average USS: 40.25 MB +Peak Memory: 255.42 MB +Average Memory: 121.15 MB +Peak RSS: 255.42 MB +Average RSS: 121.15 MB +Peak USS: 142.66 MB +Average USS: 64.34 MB Primary Memory Metric: rss -Memory Efficiency: 2056.26 classes/MB -Memory Stability (Std Dev): 60.83 MB -Memory per Class: 509.94 bytes/class +Memory Efficiency: 1566.06 classes/MB +Memory Stability (Std Dev): 85.23 MB +Memory per Class: 669.56 bytes/class CPU USAGE -------------------------------------------------------------------------------- -User CPU Time: 977.39 ms -System CPU Time: 5.16 s -Total CPU Time: 6.13 s +User CPU Time: 922.85 ms +System CPU Time: 2.79 s +Total CPU Time: 3.71 s I/O & OUTPUT METRICS -------------------------------------------------------------------------------- @@ -52,7 +53,7 @@ Output Size: 5.05 MB ================================================================================ TAILWIND PERFORMANCE BENCHMARK REPORT ================================================================================ -Generated: 2025-12-26 15:58:08 +Generated: 2025-12-27 01:24:25 SYSTEM INFORMATION -------------------------------------------------------------------------------- @@ -60,6 +61,7 @@ OS: Darwin 25.2.0 CPU: arm Cores: 12 physical, 12 logical Memory: 32.0 GB +GRIMOIRE_CSS_JOBS: 4 INPUT SUMMARY -------------------------------------------------------------------------------- @@ -69,22 +71,22 @@ Input HTML Files: 100000 PERFORMANCE METRICS -------------------------------------------------------------------------------- -Build Time: 7.95 s -Processing Speed: 50329.76 classes/second +Build Time: 9.37 s +Processing Speed: 42684.28 classes/second MEMORY USAGE -------------------------------------------------------------------------------- -Peak Memory: 305.16 MB -Average Memory: 156.90 MB -Memory Efficiency: 1310.82 classes/MB -Memory Stability (Std Dev): 75.14 MB -Memory per Class: 799.94 bytes/class +Peak Memory: 302.92 MB +Average Memory: 165.59 MB +Memory Efficiency: 1320.49 classes/MB +Memory Stability (Std Dev): 70.57 MB +Memory per Class: 794.08 bytes/class CPU USAGE -------------------------------------------------------------------------------- -User CPU Time: 8.84 s -System CPU Time: 21.72 s -Total CPU Time: 30.56 s +User CPU Time: 8.72 s +System CPU Time: 43.22 s +Total CPU Time: 51.93 s I/O & OUTPUT METRICS -------------------------------------------------------------------------------- @@ -96,7 +98,7 @@ Output Size: 5.66 MB ================================================================================ CSS FRAMEWORKS PERFORMANCE COMPARISON ================================================================================ -Generated: 2025-12-26 15:58:08 +Generated: 2025-12-27 01:24:25 SYSTEM INFORMATION -------------------------------------------------------------------------------- @@ -104,15 +106,16 @@ OS: Darwin 25.2.0 CPU: arm Cores: 12 physical, 12 logical Memory: 32.0 GB +GRIMOIRE_CSS_JOBS: 4 PERFORMANCE COMPARISON -------------------------------------------------------------------------------- Metric | Grimoire CSS | Tailwind CSS | Difference | Ratio (G/T) ------------------------------------------------------------------------------------------------ -Build Time | 1.38 s | 7.95 s | 6.56 s | 5.75x -Classes/sec | 289229.43 | 50329.76 | 238899.68 | 5.75x -Peak Memory | 194.53 MB | 305.16 MB | 110.62 MB | 1.57x -Memory Efficiency | 2056.26 classes/MB | 1310.82 classes/MB | 745.43 classes/MB | 1.57x +Build Time | 1.20 s | 9.37 s | 8.17 s | 7.78x +Classes/sec | 332246.82 | 42684.28 | 289562.54 | 7.78x +Peak Memory | 255.42 MB | 302.92 MB | 47.50 MB | 1.19x +Memory Efficiency | 1566.06 classes/MB | 1320.49 classes/MB | 245.57 classes/MB | 1.19x Output Size | 5.05 MB | 5.66 MB | 625.89 KB | 1.12x Notes: diff --git a/benchmark/results/result_20251227_012425_pretty.json b/benchmark/results/result_20251227_012425_pretty.json new file mode 100644 index 0000000..e52b960 --- /dev/null +++ b/benchmark/results/result_20251227_012425_pretty.json @@ -0,0 +1,119 @@ +{ + "charts": [ + { + "title": "Grimoire CSS vs Tailwind CSS - Build Time", + "chartTitle": "Build Time", + "chartSubtitle": "Total time taken to compile CSS (lower is better)", + "chartId": "chart_time", + "highlightText": "7.8x faster", + "grimoireHeight": 10.920086928292807, + "tailwindHeight": 85.0, + "grimoireValue": "1.20s", + "tailwindValue": "9.37s", + "grimoireRawValue": 1.2, + "tailwindRawValue": 9.37 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Peak Memory Usage", + "chartTitle": "Peak Memory Usage", + "chartSubtitle": "Maximum memory consumed during compilation (lower is better)", + "chartId": "chart_peak_memory", + "highlightText": "1.2x less", + "grimoireHeight": 71.67148088925569, + "tailwindHeight": 85.0, + "grimoireValue": "255.42 MB", + "tailwindValue": "302.92 MB", + "grimoireRawValue": 255.42, + "tailwindRawValue": 302.92 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Average Memory Usage", + "chartTitle": "Average Memory Usage", + "chartSubtitle": "Average memory consumed during compilation (lower is better)", + "chartId": "chart_avg_memory", + "highlightText": "1.4x less", + "grimoireHeight": 62.186894050071736, + "tailwindHeight": 85.0, + "grimoireValue": "121.15 MB", + "tailwindValue": "165.59 MB", + "grimoireRawValue": 121.15, + "tailwindRawValue": 165.59 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - CPU Usage (User Time)", + "chartTitle": "CPU Usage (User Time)", + "chartSubtitle": "CPU time spent in user mode during compilation (lower is better)", + "chartId": "chart_cpu_user", + "highlightText": "9.4x less", + "grimoireHeight": 8.997005544604335, + "tailwindHeight": 85.0, + "grimoireValue": "922.85ms", + "tailwindValue": "8.72s", + "grimoireRawValue": 0.92, + "tailwindRawValue": 8.72 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - CPU Usage (System Time)", + "chartTitle": "CPU Usage (System Time)", + "chartSubtitle": "CPU time spent in system mode during compilation (lower is better)", + "chartId": "chart_cpu_system", + "highlightText": "15.5x less", + "grimoireHeight": 5.489235917923912, + "tailwindHeight": 85.0, + "grimoireValue": "2.79s", + "tailwindValue": "43.22s", + "grimoireRawValue": 2.79, + "tailwindRawValue": 43.22 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Output Size", + "chartTitle": "Output Size", + "chartSubtitle": "Size of the generated CSS file (lower is better)", + "chartId": "chart_output", + "highlightText": "1.1x less", + "grimoireHeight": 75.82519186689818, + "tailwindHeight": 85.0, + "grimoireValue": "5.05 MB", + "tailwindValue": "5.66 MB", + "grimoireRawValue": 5172.66, + "tailwindRawValue": 5798.54 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Processing Speed", + "chartTitle": "Processing Speed", + "chartSubtitle": "Number of utility classes processed per second (higher is better)", + "chartId": "chart_classes_per_second", + "highlightText": "7.8x faster", + "grimoireHeight": 85.0, + "tailwindHeight": 10.92008692829281, + "grimoireValue": "332246.82 classes/s", + "tailwindValue": "42684.28 classes/s", + "grimoireRawValue": 332246.82, + "tailwindRawValue": 42684.28 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Memory Efficiency", + "chartTitle": "Memory Efficiency", + "chartSubtitle": "Number of utility classes processed per MB of memory (higher is better)", + "chartId": "chart_memory_efficiency", + "highlightText": "1.2x more efficient", + "grimoireHeight": 85.0, + "tailwindHeight": 71.67148088925569, + "grimoireValue": "1566.06 classes/MB", + "tailwindValue": "1320.49 classes/MB", + "grimoireRawValue": 1566.06, + "tailwindRawValue": 1320.49 + } + ], + "metadata": { + "timestamp": 1766795065.6670752, + "timestamp_human": "2025-12-27 01:24:25", + "system": { + "os": "Darwin 25.2.0", + "cpu": "arm", + "cores": "12 physical, 12 logical", + "memory": "32.0 GB", + "grimoire_css_jobs": 4 + } + } +} \ No newline at end of file diff --git a/benchmark/results/result_20251226_155838.json b/benchmark/results/result_20251227_012441.json similarity index 54% rename from benchmark/results/result_20251226_155838.json rename to benchmark/results/result_20251227_012441.json index 2034456..32eb8af 100644 --- a/benchmark/results/result_20251226_155838.json +++ b/benchmark/results/result_20251227_012441.json @@ -5,6 +5,9 @@ "version": "Darwin Kernel Version 25.2.0: Tue Nov 18 21:07:05 PST 2025; root:xnu-12377.61.12~1/RELEASE_ARM64_T6020", "release": "25.2.0" }, + "benchmark": { + "grimoire_css_jobs": 6 + }, "cpu": { "name": "arm", "cores_logical": 12, @@ -15,12 +18,12 @@ }, "psutil_version": "7.0.0", "git": { - "sha": "bafd6c9b745de683c9007c3ec0d40e900d23867c", + "sha": "8f60e2643076e9065a21408a98d0da64b5aea71b", "dirty": true }, "python_version": "3.14.2", - "timestamp": 1766761118.166788, - "timestamp_human": "2025-12-26 15:58:38" + "timestamp": 1766795081.854123, + "timestamp_human": "2025-12-27 01:24:41" }, "grimoire": { "input": { @@ -37,35 +40,35 @@ }, "process": { "memory": { - "peak_bytes": 177815552, - "peak_mb": 169.578125, - "avg_bytes": 108863078.4, - "avg_mb": 103.819921875, + "peak_bytes": 151404544, + "peak_mb": 144.390625, + "avg_bytes": 89052997.81818181, + "avg_mb": 84.92755681818181, "measurement": "rss", - "rss_peak_bytes": 177815552, - "rss_peak_mb": 169.578125, - "rss_avg_bytes": 108863078.4, - "rss_avg_mb": 103.819921875, - "uss_peak_bytes": 125648896, - "uss_peak_mb": 119.828125, - "uss_avg_bytes": 47817728, - "uss_avg_mb": 45.6025390625, + "rss_peak_bytes": 151404544, + "rss_peak_mb": 144.390625, + "rss_avg_bytes": 89052997.81818181, + "rss_avg_mb": 84.92755681818181, + "uss_peak_bytes": 94502912, + "uss_peak_mb": 90.125, + "uss_avg_bytes": 49753526.85714286, + "uss_avg_mb": 47.448660714285715, "uss_is_complete": true, - "uss_partial_peak_bytes": 125648896, - "uss_partial_peak_mb": 119.828125, - "uss_partial_avg_bytes": 47817728, - "uss_partial_avg_mb": 45.6025390625, + "uss_partial_peak_bytes": 94502912, + "uss_partial_peak_mb": 90.125, + "uss_partial_avg_bytes": 49753526.85714286, + "uss_partial_avg_mb": 47.448660714285715, "uss_coverage_avg": 1.0, "uss_process_count_avg": 1, "uss_process_count_max": 1, "uss_available_count_avg": 1, "uss_available_count_max": 1, - "std_dev_mb": 62.631868449728564 + "std_dev_mb": 53.88139312427017 }, "cpu": { - "user_time": 0.960538225, - "system_time": 3.536485, - "total_time": 4.4970232249999995 + "user_time": 0.922690456, + "system_time": 4.8702180749999995, + "total_time": 5.792908530999999 }, "io": { "read_bytes": 49487280, @@ -75,11 +78,11 @@ } }, "throughput": { - "build_time_seconds": 1.4513750076293945, - "classes_per_second": 275604.85601398797, - "memory_efficiency": 2358.8301852022482, - "bytes_processed_per_second": 34096825.244931094, - "bytes_generated_per_second": 3649504.7607658175 + "build_time_seconds": 1.3034098148345947, + "classes_per_second": 306891.9655563293, + "memory_efficiency": 2770.3045124986475, + "bytes_processed_per_second": 37967552.05981016, + "bytes_generated_per_second": 4063802.4508601497 }, "exit_code": 0, "success": true, @@ -106,16 +109,16 @@ }, "process": { "memory": { - "peak_bytes": 322109440, - "peak_mb": 307.1875, - "avg_bytes": 165074442.82779455, - "avg_mb": 157.42725641993957, - "std_dev_mb": 76.01724689330442 + "peak_bytes": 321994752, + "peak_mb": 307.078125, + "avg_bytes": 173116153.8164251, + "avg_mb": 165.09642964975845, + "std_dev_mb": 71.08418887937042 }, "cpu": { - "user_time": 8.836630919000001, - "system_time": 20.624965570999997, - "total_time": 29.46159649 + "user_time": 8.819792976, + "system_time": 41.545980609, + "total_time": 50.365773585 }, "io": { "read_bytes": 49487280, @@ -125,11 +128,11 @@ } }, "throughput": { - "build_time_seconds": 7.885288715362549, - "classes_per_second": 50728.136208974385, - "memory_efficiency": 1302.1558494404883, - "bytes_processed_per_second": 6275899.562635695, - "bytes_generated_per_second": 753011.1089568388 + "build_time_seconds": 9.26749849319458, + "classes_per_second": 43162.240629846034, + "memory_efficiency": 1302.6196509438762, + "bytes_processed_per_second": 5339874.620572109, + "bytes_generated_per_second": 640702.558987223 }, "exit_code": 0, "success": true diff --git a/benchmark/results/result_20251226_155838.txt b/benchmark/results/result_20251227_012441.txt similarity index 72% rename from benchmark/results/result_20251226_155838.txt rename to benchmark/results/result_20251227_012441.txt index bc3d40b..b59c6ab 100644 --- a/benchmark/results/result_20251226_155838.txt +++ b/benchmark/results/result_20251227_012441.txt @@ -3,7 +3,7 @@ ================================================================================================================================================================ GRIMOIRE PERFORMANCE BENCHMARK REPORT ================================================================================ -Generated: 2025-12-26 15:58:38 +Generated: 2025-12-27 01:24:41 SYSTEM INFORMATION -------------------------------------------------------------------------------- @@ -11,6 +11,7 @@ OS: Darwin 25.2.0 CPU: arm Cores: 12 physical, 12 logical Memory: 32.0 GB +GRIMOIRE_CSS_JOBS: 6 INPUT SUMMARY -------------------------------------------------------------------------------- @@ -20,27 +21,27 @@ Input HTML Files: 100000 PERFORMANCE METRICS -------------------------------------------------------------------------------- -Build Time: 1.45 s -Processing Speed: 275604.86 classes/second +Build Time: 1.30 s +Processing Speed: 306891.97 classes/second MEMORY USAGE -------------------------------------------------------------------------------- -Peak Memory: 169.58 MB -Average Memory: 103.82 MB -Peak RSS: 169.58 MB -Average RSS: 103.82 MB -Peak USS: 119.83 MB -Average USS: 45.60 MB +Peak Memory: 144.39 MB +Average Memory: 84.93 MB +Peak RSS: 144.39 MB +Average RSS: 84.93 MB +Peak USS: 90.12 MB +Average USS: 47.45 MB Primary Memory Metric: rss -Memory Efficiency: 2358.83 classes/MB -Memory Stability (Std Dev): 62.63 MB -Memory per Class: 444.53 bytes/class +Memory Efficiency: 2770.30 classes/MB +Memory Stability (Std Dev): 53.88 MB +Memory per Class: 378.51 bytes/class CPU USAGE -------------------------------------------------------------------------------- -User CPU Time: 960.54 ms -System CPU Time: 3.54 s -Total CPU Time: 4.50 s +User CPU Time: 922.69 ms +System CPU Time: 4.87 s +Total CPU Time: 5.79 s I/O & OUTPUT METRICS -------------------------------------------------------------------------------- @@ -52,7 +53,7 @@ Output Size: 5.05 MB ================================================================================ TAILWIND PERFORMANCE BENCHMARK REPORT ================================================================================ -Generated: 2025-12-26 15:58:38 +Generated: 2025-12-27 01:24:41 SYSTEM INFORMATION -------------------------------------------------------------------------------- @@ -60,6 +61,7 @@ OS: Darwin 25.2.0 CPU: arm Cores: 12 physical, 12 logical Memory: 32.0 GB +GRIMOIRE_CSS_JOBS: 6 INPUT SUMMARY -------------------------------------------------------------------------------- @@ -69,22 +71,22 @@ Input HTML Files: 100000 PERFORMANCE METRICS -------------------------------------------------------------------------------- -Build Time: 7.89 s -Processing Speed: 50728.14 classes/second +Build Time: 9.27 s +Processing Speed: 43162.24 classes/second MEMORY USAGE -------------------------------------------------------------------------------- -Peak Memory: 307.19 MB -Average Memory: 157.43 MB -Memory Efficiency: 1302.16 classes/MB -Memory Stability (Std Dev): 76.02 MB -Memory per Class: 805.26 bytes/class +Peak Memory: 307.08 MB +Average Memory: 165.10 MB +Memory Efficiency: 1302.62 classes/MB +Memory Stability (Std Dev): 71.08 MB +Memory per Class: 804.97 bytes/class CPU USAGE -------------------------------------------------------------------------------- -User CPU Time: 8.84 s -System CPU Time: 20.62 s -Total CPU Time: 29.46 s +User CPU Time: 8.82 s +System CPU Time: 41.55 s +Total CPU Time: 50.37 s I/O & OUTPUT METRICS -------------------------------------------------------------------------------- @@ -96,7 +98,7 @@ Output Size: 5.66 MB ================================================================================ CSS FRAMEWORKS PERFORMANCE COMPARISON ================================================================================ -Generated: 2025-12-26 15:58:38 +Generated: 2025-12-27 01:24:41 SYSTEM INFORMATION -------------------------------------------------------------------------------- @@ -104,15 +106,16 @@ OS: Darwin 25.2.0 CPU: arm Cores: 12 physical, 12 logical Memory: 32.0 GB +GRIMOIRE_CSS_JOBS: 6 PERFORMANCE COMPARISON -------------------------------------------------------------------------------- Metric | Grimoire CSS | Tailwind CSS | Difference | Ratio (G/T) ------------------------------------------------------------------------------------------------- -Build Time | 1.45 s | 7.89 s | 6.43 s | 5.43x -Classes/sec | 275604.86 | 50728.14 | 224876.72 | 5.43x -Peak Memory | 169.58 MB | 307.19 MB | 137.61 MB | 1.81x -Memory Efficiency | 2358.83 classes/MB | 1302.16 classes/MB | 1056.67 classes/MB | 1.81x +Build Time | 1.30 s | 9.27 s | 7.96 s | 7.11x +Classes/sec | 306891.97 | 43162.24 | 263729.72 | 7.11x +Peak Memory | 144.39 MB | 307.08 MB | 162.69 MB | 2.13x +Memory Efficiency | 2770.30 classes/MB | 1302.62 classes/MB | 1467.68 classes/MB | 2.13x Output Size | 5.05 MB | 5.66 MB | 625.89 KB | 1.12x Notes: diff --git a/benchmark/results/result_20251226_155901_pretty.json b/benchmark/results/result_20251227_012441_pretty.json similarity index 61% rename from benchmark/results/result_20251226_155901_pretty.json rename to benchmark/results/result_20251227_012441_pretty.json index 5c3e979..06d0507 100644 --- a/benchmark/results/result_20251226_155901_pretty.json +++ b/benchmark/results/result_20251227_012441_pretty.json @@ -5,39 +5,39 @@ "chartTitle": "Build Time", "chartSubtitle": "Total time taken to compile CSS (lower is better)", "chartId": "chart_time", - "highlightText": "4.4x faster", - "grimoireHeight": 19.475319572949616, + "highlightText": "7.1x faster", + "grimoireHeight": 11.954664394312775, "tailwindHeight": 85.0, - "grimoireValue": "1.81s", - "tailwindValue": "7.91s", - "grimoireRawValue": 1.81, - "tailwindRawValue": 7.91 + "grimoireValue": "1.30s", + "tailwindValue": "9.27s", + "grimoireRawValue": 1.3, + "tailwindRawValue": 9.27 }, { "title": "Grimoire CSS vs Tailwind CSS - Peak Memory Usage", "chartTitle": "Peak Memory Usage", "chartSubtitle": "Maximum memory consumed during compilation (lower is better)", "chartId": "chart_peak_memory", - "highlightText": "1.7x less", - "grimoireHeight": 49.68485062575696, + "highlightText": "2.1x less", + "grimoireHeight": 39.96768941128581, "tailwindHeight": 85.0, - "grimoireValue": "180.98 MB", - "tailwindValue": "309.62 MB", - "grimoireRawValue": 180.98, - "tailwindRawValue": 309.62 + "grimoireValue": "144.39 MB", + "tailwindValue": "307.08 MB", + "grimoireRawValue": 144.39, + "tailwindRawValue": 307.08 }, { "title": "Grimoire CSS vs Tailwind CSS - Average Memory Usage", "chartTitle": "Average Memory Usage", "chartSubtitle": "Average memory consumed during compilation (lower is better)", "chartId": "chart_avg_memory", - "highlightText": "1.5x less", - "grimoireHeight": 57.15486391177077, + "highlightText": "1.9x less", + "grimoireHeight": 43.725005712478264, "tailwindHeight": 85.0, - "grimoireValue": "105.77 MB", - "tailwindValue": "157.3 MB", - "grimoireRawValue": 105.77, - "tailwindRawValue": 157.3 + "grimoireValue": "84.93 MB", + "tailwindValue": "165.1 MB", + "grimoireRawValue": 84.93, + "tailwindRawValue": 165.1 }, { "title": "Grimoire CSS vs Tailwind CSS - CPU Usage (User Time)", @@ -45,25 +45,25 @@ "chartSubtitle": "CPU time spent in user mode during compilation (lower is better)", "chartId": "chart_cpu_user", "highlightText": "9.6x less", - "grimoireHeight": 8.88992251079974, + "grimoireHeight": 8.892350304980672, "tailwindHeight": 85.0, - "grimoireValue": "924.24ms", - "tailwindValue": "8.84s", + "grimoireValue": "922.69ms", + "tailwindValue": "8.82s", "grimoireRawValue": 0.92, - "tailwindRawValue": 8.84 + "tailwindRawValue": 8.82 }, { "title": "Grimoire CSS vs Tailwind CSS - CPU Usage (System Time)", "chartTitle": "CPU Usage (System Time)", "chartSubtitle": "CPU time spent in system mode during compilation (lower is better)", "chartId": "chart_cpu_system", - "highlightText": "8.3x less", - "grimoireHeight": 10.24242221101157, + "highlightText": "8.5x less", + "grimoireHeight": 9.96410555983659, "tailwindHeight": 85.0, - "grimoireValue": "2.51s", - "tailwindValue": "20.87s", - "grimoireRawValue": 2.51, - "tailwindRawValue": 20.87 + "grimoireValue": "4.87s", + "tailwindValue": "41.55s", + "grimoireRawValue": 4.87, + "tailwindRawValue": 41.55 }, { "title": "Grimoire CSS vs Tailwind CSS - Output Size", @@ -83,36 +83,37 @@ "chartTitle": "Processing Speed", "chartSubtitle": "Number of utility classes processed per second (higher is better)", "chartId": "chart_classes_per_second", - "highlightText": "4.4x faster", + "highlightText": "7.1x faster", "grimoireHeight": 85.0, - "tailwindHeight": 19.475319572949616, - "grimoireValue": "220674.85 classes/s", - "tailwindValue": "50561.33 classes/s", - "grimoireRawValue": 220674.85, - "tailwindRawValue": 50561.33 + "tailwindHeight": 11.954664394312775, + "grimoireValue": "306891.97 classes/s", + "tailwindValue": "43162.24 classes/s", + "grimoireRawValue": 306891.97, + "tailwindRawValue": 43162.24 }, { "title": "Grimoire CSS vs Tailwind CSS - Memory Efficiency", "chartTitle": "Memory Efficiency", "chartSubtitle": "Number of utility classes processed per MB of memory (higher is better)", "chartId": "chart_memory_efficiency", - "highlightText": "1.7x more efficient", + "highlightText": "2.1x more efficient", "grimoireHeight": 85.0, - "tailwindHeight": 49.68485062575697, - "grimoireValue": "2210.17 classes/MB", - "tailwindValue": "1291.90 classes/MB", - "grimoireRawValue": 2210.17, - "tailwindRawValue": 1291.9 + "tailwindHeight": 39.967689411285804, + "grimoireValue": "2770.30 classes/MB", + "tailwindValue": "1302.62 classes/MB", + "grimoireRawValue": 2770.3, + "tailwindRawValue": 1302.62 } ], "metadata": { - "timestamp": 1766761141.8890638, - "timestamp_human": "2025-12-26 15:59:01", + "timestamp": 1766795081.854123, + "timestamp_human": "2025-12-27 01:24:41", "system": { "os": "Darwin 25.2.0", "cpu": "arm", "cores": "12 physical, 12 logical", - "memory": "32.0 GB" + "memory": "32.0 GB", + "grimoire_css_jobs": 6 } } } \ No newline at end of file diff --git a/benchmark/results/result_20251226_155808.json b/benchmark/results/result_20251227_012458.json similarity index 52% rename from benchmark/results/result_20251226_155808.json rename to benchmark/results/result_20251227_012458.json index a538998..6637b36 100644 --- a/benchmark/results/result_20251226_155808.json +++ b/benchmark/results/result_20251227_012458.json @@ -5,6 +5,9 @@ "version": "Darwin Kernel Version 25.2.0: Tue Nov 18 21:07:05 PST 2025; root:xnu-12377.61.12~1/RELEASE_ARM64_T6020", "release": "25.2.0" }, + "benchmark": { + "grimoire_css_jobs": 8 + }, "cpu": { "name": "arm", "cores_logical": 12, @@ -15,12 +18,12 @@ }, "psutil_version": "7.0.0", "git": { - "sha": "bafd6c9b745de683c9007c3ec0d40e900d23867c", + "sha": "8f60e2643076e9065a21408a98d0da64b5aea71b", "dirty": true }, "python_version": "3.14.2", - "timestamp": 1766761088.047711, - "timestamp_human": "2025-12-26 15:58:08" + "timestamp": 1766795098.173505, + "timestamp_human": "2025-12-27 01:24:58" }, "grimoire": { "input": { @@ -37,35 +40,35 @@ }, "process": { "memory": { - "peak_bytes": 203980800, - "peak_mb": 194.53125, - "avg_bytes": 94444584.96, - "avg_mb": 90.069375, + "peak_bytes": 181878784, + "peak_mb": 173.453125, + "avg_bytes": 90574532.92307693, + "avg_mb": 86.37860576923077, "measurement": "rss", - "rss_peak_bytes": 203980800, - "rss_peak_mb": 194.53125, - "rss_avg_bytes": 94444584.96, - "rss_avg_mb": 90.069375, - "uss_peak_bytes": 108871680, - "uss_peak_mb": 103.828125, - "uss_avg_bytes": 42206931.626666665, - "uss_avg_mb": 40.251666666666665, + "rss_peak_bytes": 181878784, + "rss_peak_mb": 173.453125, + "rss_avg_bytes": 90574532.92307693, + "rss_avg_mb": 86.37860576923077, + "uss_peak_bytes": 108969984, + "uss_peak_mb": 103.921875, + "uss_avg_bytes": 28411326.35897436, + "uss_avg_mb": 27.095152243589745, "uss_is_complete": true, - "uss_partial_peak_bytes": 108871680, - "uss_partial_peak_mb": 103.828125, - "uss_partial_avg_bytes": 42206931.626666665, - "uss_partial_avg_mb": 40.251666666666665, - "uss_coverage_avg": 0.9868421052631579, + "uss_partial_peak_bytes": 108969984, + "uss_partial_peak_mb": 103.921875, + "uss_partial_avg_bytes": 28411326.35897436, + "uss_partial_avg_mb": 27.095152243589745, + "uss_coverage_avg": 1.0, "uss_process_count_avg": 1, "uss_process_count_max": 1, - "uss_available_count_avg": 0.9868421052631579, + "uss_available_count_avg": 1, "uss_available_count_max": 1, - "std_dev_mb": 60.83214424364095 + "std_dev_mb": 55.383478271518264 }, "cpu": { - "user_time": 0.977391933, - "system_time": 5.1558802219999995, - "total_time": 6.133272154999999 + "user_time": 0.92461585, + "system_time": 4.9346328239999995, + "total_time": 5.859248674 }, "io": { "read_bytes": 49487280, @@ -75,11 +78,11 @@ } }, "throughput": { - "build_time_seconds": 1.3830058574676514, - "classes_per_second": 289229.4330064731, - "memory_efficiency": 2056.2557429718877, - "bytes_processed_per_second": 35782408.10245991, - "bytes_generated_per_second": 3829918.7030911706 + "build_time_seconds": 1.3175179958343506, + "classes_per_second": 303605.7201986728, + "memory_efficiency": 2306.1331411584542, + "bytes_processed_per_second": 37560989.797836475, + "bytes_generated_per_second": 4020286.6425711866 }, "exit_code": 0, "success": true, @@ -106,16 +109,16 @@ }, "process": { "memory": { - "peak_bytes": 319979520, - "peak_mb": 305.15625, - "avg_bytes": 164517906.3402985, - "avg_mb": 156.89650186567164, - "std_dev_mb": 75.13581769415364 + "peak_bytes": 319864832, + "peak_mb": 305.046875, + "avg_bytes": 173194673.23076922, + "avg_mb": 165.17131159855768, + "std_dev_mb": 71.40594682739257 }, "cpu": { - "user_time": 8.839859546000001, - "system_time": 21.720051988999998, - "total_time": 30.559911534999998 + "user_time": 8.87050304, + "system_time": 41.328194268000004, + "total_time": 50.19869730800001 }, "io": { "read_bytes": 49487280, @@ -125,11 +128,11 @@ } }, "throughput": { - "build_time_seconds": 7.947704076766968, - "classes_per_second": 50329.75512630281, - "memory_efficiency": 1310.8235535074245, - "bytes_processed_per_second": 6226613.311467283, - "bytes_generated_per_second": 747097.5193147089 + "build_time_seconds": 9.233954429626465, + "classes_per_second": 43319.035527900174, + "memory_efficiency": 1311.2935511960252, + "bytes_processed_per_second": 5359272.712157177, + "bytes_generated_per_second": 643030.0306604605 }, "exit_code": 0, "success": true diff --git a/benchmark/results/result_20251226_155901.txt b/benchmark/results/result_20251227_012458.txt similarity index 72% rename from benchmark/results/result_20251226_155901.txt rename to benchmark/results/result_20251227_012458.txt index 08476b7..66271d3 100644 --- a/benchmark/results/result_20251226_155901.txt +++ b/benchmark/results/result_20251227_012458.txt @@ -3,7 +3,7 @@ ================================================================================================================================================================ GRIMOIRE PERFORMANCE BENCHMARK REPORT ================================================================================ -Generated: 2025-12-26 15:59:01 +Generated: 2025-12-27 01:24:58 SYSTEM INFORMATION -------------------------------------------------------------------------------- @@ -11,6 +11,7 @@ OS: Darwin 25.2.0 CPU: arm Cores: 12 physical, 12 logical Memory: 32.0 GB +GRIMOIRE_CSS_JOBS: 8 INPUT SUMMARY -------------------------------------------------------------------------------- @@ -20,27 +21,27 @@ Input HTML Files: 100000 PERFORMANCE METRICS -------------------------------------------------------------------------------- -Build Time: 1.81 s -Processing Speed: 220674.85 classes/second +Build Time: 1.32 s +Processing Speed: 303605.72 classes/second MEMORY USAGE -------------------------------------------------------------------------------- -Peak Memory: 180.98 MB -Average Memory: 105.77 MB -Peak RSS: 180.98 MB -Average RSS: 105.77 MB -Peak USS: 96.25 MB -Average USS: 51.81 MB +Peak Memory: 173.45 MB +Average Memory: 86.38 MB +Peak RSS: 173.45 MB +Average RSS: 86.38 MB +Peak USS: 103.92 MB +Average USS: 27.10 MB Primary Memory Metric: rss -Memory Efficiency: 2210.17 classes/MB -Memory Stability (Std Dev): 53.65 MB -Memory per Class: 474.43 bytes/class +Memory Efficiency: 2306.13 classes/MB +Memory Stability (Std Dev): 55.38 MB +Memory per Class: 454.69 bytes/class CPU USAGE -------------------------------------------------------------------------------- -User CPU Time: 924.24 ms -System CPU Time: 2.51 s -Total CPU Time: 3.44 s +User CPU Time: 924.62 ms +System CPU Time: 4.93 s +Total CPU Time: 5.86 s I/O & OUTPUT METRICS -------------------------------------------------------------------------------- @@ -52,7 +53,7 @@ Output Size: 5.05 MB ================================================================================ TAILWIND PERFORMANCE BENCHMARK REPORT ================================================================================ -Generated: 2025-12-26 15:59:01 +Generated: 2025-12-27 01:24:58 SYSTEM INFORMATION -------------------------------------------------------------------------------- @@ -60,6 +61,7 @@ OS: Darwin 25.2.0 CPU: arm Cores: 12 physical, 12 logical Memory: 32.0 GB +GRIMOIRE_CSS_JOBS: 8 INPUT SUMMARY -------------------------------------------------------------------------------- @@ -69,22 +71,22 @@ Input HTML Files: 100000 PERFORMANCE METRICS -------------------------------------------------------------------------------- -Build Time: 7.91 s -Processing Speed: 50561.33 classes/second +Build Time: 9.23 s +Processing Speed: 43319.04 classes/second MEMORY USAGE -------------------------------------------------------------------------------- -Peak Memory: 309.62 MB -Average Memory: 157.30 MB -Memory Efficiency: 1291.90 classes/MB -Memory Stability (Std Dev): 75.63 MB -Memory per Class: 811.65 bytes/class +Peak Memory: 305.05 MB +Average Memory: 165.17 MB +Memory Efficiency: 1311.29 classes/MB +Memory Stability (Std Dev): 71.41 MB +Memory per Class: 799.65 bytes/class CPU USAGE -------------------------------------------------------------------------------- -User CPU Time: 8.84 s -System CPU Time: 20.87 s -Total CPU Time: 29.71 s +User CPU Time: 8.87 s +System CPU Time: 41.33 s +Total CPU Time: 50.20 s I/O & OUTPUT METRICS -------------------------------------------------------------------------------- @@ -96,7 +98,7 @@ Output Size: 5.66 MB ================================================================================ CSS FRAMEWORKS PERFORMANCE COMPARISON ================================================================================ -Generated: 2025-12-26 15:59:01 +Generated: 2025-12-27 01:24:58 SYSTEM INFORMATION -------------------------------------------------------------------------------- @@ -104,15 +106,16 @@ OS: Darwin 25.2.0 CPU: arm Cores: 12 physical, 12 logical Memory: 32.0 GB +GRIMOIRE_CSS_JOBS: 8 PERFORMANCE COMPARISON -------------------------------------------------------------------------------- Metric | Grimoire CSS | Tailwind CSS | Difference | Ratio (G/T) ------------------------------------------------------------------------------------------------ -Build Time | 1.81 s | 7.91 s | 6.10 s | 4.36x -Classes/sec | 220674.85 | 50561.33 | 170113.52 | 4.36x -Peak Memory | 180.98 MB | 309.62 MB | 128.64 MB | 1.71x -Memory Efficiency | 2210.17 classes/MB | 1291.90 classes/MB | 918.26 classes/MB | 1.71x +Build Time | 1.32 s | 9.23 s | 7.92 s | 7.01x +Classes/sec | 303605.72 | 43319.04 | 260286.68 | 7.01x +Peak Memory | 173.45 MB | 305.05 MB | 131.59 MB | 1.76x +Memory Efficiency | 2306.13 classes/MB | 1311.29 classes/MB | 994.84 classes/MB | 1.76x Output Size | 5.05 MB | 5.66 MB | 625.89 KB | 1.12x Notes: diff --git a/benchmark/results/result_20251226_155838_pretty.json b/benchmark/results/result_20251227_012458_pretty.json similarity index 62% rename from benchmark/results/result_20251226_155838_pretty.json rename to benchmark/results/result_20251227_012458_pretty.json index 966bf47..ff7e108 100644 --- a/benchmark/results/result_20251226_155838_pretty.json +++ b/benchmark/results/result_20251227_012458_pretty.json @@ -5,13 +5,13 @@ "chartTitle": "Build Time", "chartSubtitle": "Total time taken to compile CSS (lower is better)", "chartId": "chart_time", - "highlightText": "5.4x faster", - "grimoireHeight": 15.645194501014082, + "highlightText": "7.0x faster", + "grimoireHeight": 12.12795996551718, "tailwindHeight": 85.0, - "grimoireValue": "1.45s", - "tailwindValue": "7.89s", - "grimoireRawValue": 1.45, - "tailwindRawValue": 7.89 + "grimoireValue": "1.32s", + "tailwindValue": "9.23s", + "grimoireRawValue": 1.32, + "tailwindRawValue": 9.23 }, { "title": "Grimoire CSS vs Tailwind CSS - Peak Memory Usage", @@ -19,51 +19,51 @@ "chartSubtitle": "Maximum memory consumed during compilation (lower is better)", "chartId": "chart_peak_memory", "highlightText": "1.8x less", - "grimoireHeight": 46.922939979654124, + "grimoireHeight": 48.331967423039494, "tailwindHeight": 85.0, - "grimoireValue": "169.58 MB", - "tailwindValue": "307.19 MB", - "grimoireRawValue": 169.58, - "tailwindRawValue": 307.19 + "grimoireValue": "173.45 MB", + "tailwindValue": "305.05 MB", + "grimoireRawValue": 173.45, + "tailwindRawValue": 305.05 }, { "title": "Grimoire CSS vs Tailwind CSS - Average Memory Usage", "chartTitle": "Average Memory Usage", "chartSubtitle": "Average memory consumed during compilation (lower is better)", "chartId": "chart_avg_memory", - "highlightText": "1.5x less", - "grimoireHeight": 56.05568921200658, + "highlightText": "1.9x less", + "grimoireHeight": 44.451917341611335, "tailwindHeight": 85.0, - "grimoireValue": "103.82 MB", - "tailwindValue": "157.43 MB", - "grimoireRawValue": 103.82, - "tailwindRawValue": 157.43 + "grimoireValue": "86.38 MB", + "tailwindValue": "165.17 MB", + "grimoireRawValue": 86.38, + "tailwindRawValue": 165.17 }, { "title": "Grimoire CSS vs Tailwind CSS - CPU Usage (User Time)", "chartTitle": "CPU Usage (User Time)", "chartSubtitle": "CPU time spent in user mode during compilation (lower is better)", "chartId": "chart_cpu_user", - "highlightText": "9.2x less", - "grimoireHeight": 9.239465795663158, + "highlightText": "9.6x less", + "grimoireHeight": 8.859965088293349, "tailwindHeight": 85.0, - "grimoireValue": "960.54ms", - "tailwindValue": "8.84s", - "grimoireRawValue": 0.96, - "tailwindRawValue": 8.84 + "grimoireValue": "924.62ms", + "tailwindValue": "8.87s", + "grimoireRawValue": 0.92, + "tailwindRawValue": 8.87 }, { "title": "Grimoire CSS vs Tailwind CSS - CPU Usage (System Time)", "chartTitle": "CPU Usage (System Time)", "chartSubtitle": "CPU time spent in system mode during compilation (lower is better)", "chartId": "chart_cpu_system", - "highlightText": "5.8x less", - "grimoireHeight": 14.57462917769251, + "highlightText": "8.4x less", + "grimoireHeight": 10.149095489632145, "tailwindHeight": 85.0, - "grimoireValue": "3.54s", - "tailwindValue": "20.62s", - "grimoireRawValue": 3.54, - "tailwindRawValue": 20.62 + "grimoireValue": "4.93s", + "tailwindValue": "41.33s", + "grimoireRawValue": 4.93, + "tailwindRawValue": 41.33 }, { "title": "Grimoire CSS vs Tailwind CSS - Output Size", @@ -83,13 +83,13 @@ "chartTitle": "Processing Speed", "chartSubtitle": "Number of utility classes processed per second (higher is better)", "chartId": "chart_classes_per_second", - "highlightText": "5.4x faster", + "highlightText": "7.0x faster", "grimoireHeight": 85.0, - "tailwindHeight": 15.645194501014084, - "grimoireValue": "275604.86 classes/s", - "tailwindValue": "50728.14 classes/s", - "grimoireRawValue": 275604.86, - "tailwindRawValue": 50728.14 + "tailwindHeight": 12.127959965517183, + "grimoireValue": "303605.72 classes/s", + "tailwindValue": "43319.04 classes/s", + "grimoireRawValue": 303605.72, + "tailwindRawValue": 43319.04 }, { "title": "Grimoire CSS vs Tailwind CSS - Memory Efficiency", @@ -98,21 +98,22 @@ "chartId": "chart_memory_efficiency", "highlightText": "1.8x more efficient", "grimoireHeight": 85.0, - "tailwindHeight": 46.922939979654124, - "grimoireValue": "2358.83 classes/MB", - "tailwindValue": "1302.16 classes/MB", - "grimoireRawValue": 2358.83, - "tailwindRawValue": 1302.16 + "tailwindHeight": 48.331967423039494, + "grimoireValue": "2306.13 classes/MB", + "tailwindValue": "1311.29 classes/MB", + "grimoireRawValue": 2306.13, + "tailwindRawValue": 1311.29 } ], "metadata": { - "timestamp": 1766761118.166788, - "timestamp_human": "2025-12-26 15:58:38", + "timestamp": 1766795098.173505, + "timestamp_human": "2025-12-27 01:24:58", "system": { "os": "Darwin 25.2.0", "cpu": "arm", "cores": "12 physical, 12 logical", - "memory": "32.0 GB" + "memory": "32.0 GB", + "grimoire_css_jobs": 8 } } } \ No newline at end of file diff --git a/benchmark/results/result_20251226_155901.json b/benchmark/results/result_20251227_012514.json similarity index 52% rename from benchmark/results/result_20251226_155901.json rename to benchmark/results/result_20251227_012514.json index e174028..b3a8310 100644 --- a/benchmark/results/result_20251226_155901.json +++ b/benchmark/results/result_20251227_012514.json @@ -5,6 +5,9 @@ "version": "Darwin Kernel Version 25.2.0: Tue Nov 18 21:07:05 PST 2025; root:xnu-12377.61.12~1/RELEASE_ARM64_T6020", "release": "25.2.0" }, + "benchmark": { + "grimoire_css_jobs": 10 + }, "cpu": { "name": "arm", "cores_logical": 12, @@ -15,12 +18,12 @@ }, "psutil_version": "7.0.0", "git": { - "sha": "bafd6c9b745de683c9007c3ec0d40e900d23867c", + "sha": "8f60e2643076e9065a21408a98d0da64b5aea71b", "dirty": true }, "python_version": "3.14.2", - "timestamp": 1766761141.8890638, - "timestamp_human": "2025-12-26 15:59:01" + "timestamp": 1766795114.513845, + "timestamp_human": "2025-12-27 01:25:14" }, "grimoire": { "input": { @@ -37,35 +40,35 @@ }, "process": { "memory": { - "peak_bytes": 189775872, - "peak_mb": 180.984375, - "avg_bytes": 110906605.8989899, - "avg_mb": 105.76878156565657, + "peak_bytes": 271646720, + "peak_mb": 259.0625, + "avg_bytes": 63904206.451612905, + "avg_mb": 60.94380040322581, "measurement": "rss", - "rss_peak_bytes": 189775872, - "rss_peak_mb": 180.984375, - "rss_avg_bytes": 110906605.8989899, - "rss_avg_mb": 105.76878156565657, - "uss_peak_bytes": 100925440, - "uss_peak_mb": 96.25, - "uss_avg_bytes": 54324710.14141414, - "uss_avg_mb": 51.80808080808081, + "rss_peak_bytes": 271646720, + "rss_peak_mb": 259.0625, + "rss_avg_bytes": 63904206.451612905, + "rss_avg_mb": 60.94380040322581, + "uss_peak_bytes": 195018752, + "uss_peak_mb": 185.984375, + "uss_avg_bytes": 53297812.64516129, + "uss_avg_mb": 50.828755040322584, "uss_is_complete": true, - "uss_partial_peak_bytes": 100925440, - "uss_partial_peak_mb": 96.25, - "uss_partial_avg_bytes": 54324710.14141414, - "uss_partial_avg_mb": 51.80808080808081, - "uss_coverage_avg": 0.99, + "uss_partial_peak_bytes": 195018752, + "uss_partial_peak_mb": 185.984375, + "uss_partial_avg_bytes": 53297812.64516129, + "uss_partial_avg_mb": 50.828755040322584, + "uss_coverage_avg": 0.992, "uss_process_count_avg": 1, "uss_process_count_max": 1, - "uss_available_count_avg": 0.99, + "uss_available_count_avg": 0.992, "uss_available_count_max": 1, - "std_dev_mb": 53.649223879144905 + "std_dev_mb": 41.60914957602498 }, "cpu": { - "user_time": 0.924240524, - "system_time": 2.5149035829999997, - "total_time": 3.4391441069999997 + "user_time": 1.144358405, + "system_time": 21.18281145, + "total_time": 22.327169854999998 }, "io": { "read_bytes": 49487280, @@ -75,11 +78,11 @@ } }, "throughput": { - "build_time_seconds": 1.8126487731933594, - "classes_per_second": 220674.85213658126, - "memory_efficiency": 2210.1686955020286, - "bytes_processed_per_second": 27301085.975314356, - "bytes_generated_per_second": 2922132.560004209 + "build_time_seconds": 2.486582040786743, + "classes_per_second": 160865.79627730278, + "memory_efficiency": 1544.052110977081, + "bytes_processed_per_second": 19901728.231071133, + "bytes_generated_per_second": 2130152.922010213 }, "exit_code": 0, "success": true, @@ -106,16 +109,16 @@ }, "process": { "memory": { - "peak_bytes": 324665344, - "peak_mb": 309.625, - "avg_bytes": 164938919.56363636, - "avg_mb": 157.29801136363636, - "std_dev_mb": 75.63229678798771 + "peak_bytes": 320389120, + "peak_mb": 305.546875, + "avg_bytes": 172127066.2095238, + "avg_mb": 164.15316220238094, + "std_dev_mb": 70.51225332667009 }, "cpu": { - "user_time": 8.83702242, - "system_time": 20.870727661000004, - "total_time": 29.707750081 + "user_time": 8.663403975, + "system_time": 42.962273485000004, + "total_time": 51.62567746 }, "io": { "read_bytes": 49487280, @@ -125,11 +128,11 @@ } }, "throughput": { - "build_time_seconds": 7.91130256652832, - "classes_per_second": 50561.33255380381, - "memory_efficiency": 1291.9047234557934, - "bytes_processed_per_second": 6255263.224209648, - "bytes_generated_per_second": 750535.0667691146 + "build_time_seconds": 9.339990854263306, + "classes_per_second": 42827.23679728384, + "memory_efficiency": 1309.1477371516237, + "bytes_processed_per_second": 5298429.171096155, + "bytes_generated_per_second": 635729.7445628322 }, "exit_code": 0, "success": true diff --git a/benchmark/results/result_20251227_012514.txt b/benchmark/results/result_20251227_012514.txt new file mode 100644 index 0000000..191c067 --- /dev/null +++ b/benchmark/results/result_20251227_012514.txt @@ -0,0 +1,126 @@ + + +================================================================================================================================================================ +GRIMOIRE PERFORMANCE BENCHMARK REPORT +================================================================================ +Generated: 2025-12-27 01:25:14 + +SYSTEM INFORMATION +-------------------------------------------------------------------------------- +OS: Darwin 25.2.0 +CPU: arm +Cores: 12 physical, 12 logical +Memory: 32.0 GB +GRIMOIRE_CSS_JOBS: 10 + +INPUT SUMMARY +-------------------------------------------------------------------------------- +Unique Utility Classes: 400006 +Total Input Size: 47.19 MB +Input HTML Files: 100000 + +PERFORMANCE METRICS +-------------------------------------------------------------------------------- +Build Time: 2.49 s +Processing Speed: 160865.80 classes/second + +MEMORY USAGE +-------------------------------------------------------------------------------- +Peak Memory: 259.06 MB +Average Memory: 60.94 MB +Peak RSS: 259.06 MB +Average RSS: 60.94 MB +Peak USS: 185.98 MB +Average USS: 50.83 MB +Primary Memory Metric: rss +Memory Efficiency: 1544.05 classes/MB +Memory Stability (Std Dev): 41.61 MB +Memory per Class: 679.11 bytes/class + +CPU USAGE +-------------------------------------------------------------------------------- +User CPU Time: 1.14 s +System CPU Time: 21.18 s +Total CPU Time: 22.33 s + +I/O & OUTPUT METRICS +-------------------------------------------------------------------------------- +Total Read: 47.19 MB +Total Written: 5.05 MB +Output File Count: 10 +Output Size: 5.05 MB + +================================================================================ +TAILWIND PERFORMANCE BENCHMARK REPORT +================================================================================ +Generated: 2025-12-27 01:25:14 + +SYSTEM INFORMATION +-------------------------------------------------------------------------------- +OS: Darwin 25.2.0 +CPU: arm +Cores: 12 physical, 12 logical +Memory: 32.0 GB +GRIMOIRE_CSS_JOBS: 10 + +INPUT SUMMARY +-------------------------------------------------------------------------------- +Unique Utility Classes: 400006 +Total Input Size: 47.19 MB +Input HTML Files: 100000 + +PERFORMANCE METRICS +-------------------------------------------------------------------------------- +Build Time: 9.34 s +Processing Speed: 42827.24 classes/second + +MEMORY USAGE +-------------------------------------------------------------------------------- +Peak Memory: 305.55 MB +Average Memory: 164.15 MB +Memory Efficiency: 1309.15 classes/MB +Memory Stability (Std Dev): 70.51 MB +Memory per Class: 800.96 bytes/class + +CPU USAGE +-------------------------------------------------------------------------------- +User CPU Time: 8.66 s +System CPU Time: 42.96 s +Total CPU Time: 51.63 s + +I/O & OUTPUT METRICS +-------------------------------------------------------------------------------- +Total Read: 47.19 MB +Total Written: 5.66 MB +Output File Count: 10 +Output Size: 5.66 MB + +================================================================================ +CSS FRAMEWORKS PERFORMANCE COMPARISON +================================================================================ +Generated: 2025-12-27 01:25:14 + +SYSTEM INFORMATION +-------------------------------------------------------------------------------- +OS: Darwin 25.2.0 +CPU: arm +Cores: 12 physical, 12 logical +Memory: 32.0 GB +GRIMOIRE_CSS_JOBS: 10 + +PERFORMANCE COMPARISON +-------------------------------------------------------------------------------- +Metric | Grimoire CSS | Tailwind CSS | Difference | Ratio (G/T) +------------------------------------------------------------------------------------------------ +Build Time | 2.49 s | 9.34 s | 6.85 s | 3.76x +Classes/sec | 160865.80 | 42827.24 | 118038.56 | 3.76x +Peak Memory | 259.06 MB | 305.55 MB | 46.48 MB | 1.18x +Memory Efficiency | 1544.05 classes/MB | 1309.15 classes/MB | 234.90 classes/MB | 1.18x +Output Size | 5.05 MB | 5.66 MB | 625.89 KB | 1.12x + +Notes: +- Build Time: lower is better +- Classes/sec: higher is better +- Peak Memory: lower is better +- Memory Efficiency: higher is better +- Output Size: lower is better \ No newline at end of file diff --git a/benchmark/results/result_20251227_012514_pretty.json b/benchmark/results/result_20251227_012514_pretty.json new file mode 100644 index 0000000..db5c9ea --- /dev/null +++ b/benchmark/results/result_20251227_012514_pretty.json @@ -0,0 +1,119 @@ +{ + "charts": [ + { + "title": "Grimoire CSS vs Tailwind CSS - Build Time", + "chartTitle": "Build Time", + "chartSubtitle": "Total time taken to compile CSS (lower is better)", + "chartId": "chart_time", + "highlightText": "3.8x faster", + "grimoireHeight": 22.629516106045934, + "tailwindHeight": 85.0, + "grimoireValue": "2.49s", + "tailwindValue": "9.34s", + "grimoireRawValue": 2.49, + "tailwindRawValue": 9.34 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Peak Memory Usage", + "chartTitle": "Peak Memory Usage", + "chartSubtitle": "Maximum memory consumed during compilation (lower is better)", + "chartId": "chart_peak_memory", + "highlightText": "1.2x less", + "grimoireHeight": 72.06852467399642, + "tailwindHeight": 85.0, + "grimoireValue": "259.06 MB", + "tailwindValue": "305.55 MB", + "grimoireRawValue": 259.06, + "tailwindRawValue": 305.55 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Average Memory Usage", + "chartTitle": "Average Memory Usage", + "chartSubtitle": "Average memory consumed during compilation (lower is better)", + "chartId": "chart_avg_memory", + "highlightText": "2.7x less", + "grimoireHeight": 31.557253998479826, + "tailwindHeight": 85.0, + "grimoireValue": "60.94 MB", + "tailwindValue": "164.15 MB", + "grimoireRawValue": 60.94, + "tailwindRawValue": 164.15 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - CPU Usage (User Time)", + "chartTitle": "CPU Usage (User Time)", + "chartSubtitle": "CPU time spent in user mode during compilation (lower is better)", + "chartId": "chart_cpu_user", + "highlightText": "7.6x less", + "grimoireHeight": 11.227741971365244, + "tailwindHeight": 85.0, + "grimoireValue": "1.14s", + "tailwindValue": "8.66s", + "grimoireRawValue": 1.14, + "tailwindRawValue": 8.66 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - CPU Usage (System Time)", + "chartTitle": "CPU Usage (System Time)", + "chartSubtitle": "CPU time spent in system mode during compilation (lower is better)", + "chartId": "chart_cpu_system", + "highlightText": "2.0x less", + "grimoireHeight": 41.90976936727164, + "tailwindHeight": 85.0, + "grimoireValue": "21.18s", + "tailwindValue": "42.96s", + "grimoireRawValue": 21.18, + "tailwindRawValue": 42.96 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Output Size", + "chartTitle": "Output Size", + "chartSubtitle": "Size of the generated CSS file (lower is better)", + "chartId": "chart_output", + "highlightText": "1.1x less", + "grimoireHeight": 75.82519186689818, + "tailwindHeight": 85.0, + "grimoireValue": "5.05 MB", + "tailwindValue": "5.66 MB", + "grimoireRawValue": 5172.66, + "tailwindRawValue": 5798.54 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Processing Speed", + "chartTitle": "Processing Speed", + "chartSubtitle": "Number of utility classes processed per second (higher is better)", + "chartId": "chart_classes_per_second", + "highlightText": "3.8x faster", + "grimoireHeight": 85.0, + "tailwindHeight": 22.629516106045926, + "grimoireValue": "160865.80 classes/s", + "tailwindValue": "42827.24 classes/s", + "grimoireRawValue": 160865.8, + "tailwindRawValue": 42827.24 + }, + { + "title": "Grimoire CSS vs Tailwind CSS - Memory Efficiency", + "chartTitle": "Memory Efficiency", + "chartSubtitle": "Number of utility classes processed per MB of memory (higher is better)", + "chartId": "chart_memory_efficiency", + "highlightText": "1.2x more efficient", + "grimoireHeight": 85.0, + "tailwindHeight": 72.06852467399642, + "grimoireValue": "1544.05 classes/MB", + "tailwindValue": "1309.15 classes/MB", + "grimoireRawValue": 1544.05, + "tailwindRawValue": 1309.15 + } + ], + "metadata": { + "timestamp": 1766795114.513845, + "timestamp_human": "2025-12-27 01:25:14", + "system": { + "os": "Darwin 25.2.0", + "cpu": "arm", + "cores": "12 physical, 12 logical", + "memory": "32.0 GB", + "grimoire_css_jobs": 10 + } + } +} \ No newline at end of file From 6c2164d2d0a67bce8d81a8673fae2439dfbc7197 Mon Sep 17 00:00:00 2001 From: Dmitrii Shatokhin Date: Sat, 27 Dec 2025 02:06:05 +0100 Subject: [PATCH 4/4] chore: remove dhat-heap.json --- benchmark/dhat-heap.json | 73288 ------------------------------------- 1 file changed, 73288 deletions(-) delete mode 100644 benchmark/dhat-heap.json diff --git a/benchmark/dhat-heap.json b/benchmark/dhat-heap.json deleted file mode 100644 index 83d3865..0000000 --- a/benchmark/dhat-heap.json +++ /dev/null @@ -1,73288 +0,0 @@ -{ -"dhatFileVersion": 2, -"mode": "rust-heap", -"verb": "Allocated", -"bklt": true, -"bkacc": false, -"tu": "µs", -"Mtu": "s", -"tuth": 10, -"cmd": "../target/profiling/grimoire_css build", -"pid": 22647, -"tg": 77497149, -"te": 77516677, -"pps": [ -{ -"tb": 32, -"tbk": 1, -"tl": 30, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 320, -"tbk": 1, -"tl": 551, -"mb": 320, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -27, -28, -29, -30, -31, -32, -33, -34, -35, -36, -34, -37, -34, -38, -39, -40, -41, -42, -43, -44, -45, -46, -26 -] -}, -{ -"tb": 440, -"tbk": 1, -"tl": 18, -"mb": 440, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -57, -58, -59, -60, -61, -62, -63, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 75583565, -"mb": 80, -"mbk": 1, -"gb": 80, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -65, -66, -67, -68, -69, -70, -71, -72, -73, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 30212, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -75, -76, -77, -78, -79, -80, -81, -82, -83, -84, -85, -86, -87, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 8064, -"tbk": 6, -"tl": 127, -"mb": 4096, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -93, -94, -95, -96, -97, -98, -99, -100, -101, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -103, -104 -] -}, -{ -"tb": 312, -"tbk": 1, -"tl": 23, -"mb": 312, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -57, -58, -59, -60, -61, -62, -63, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92 -] -}, -{ -"tb": 240, -"tbk": 3, -"tl": 0, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -105, -106, -107, -108, -109, -110, -111, -112, -113, -114, -115, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 20294, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 656, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -133, -134, -135, -136, -137, -138, -139, -140, -141, -142, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 828, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -145, -146, -147, -148, -149, -150, -151, -152, -153, -154, -155, -156, -157, -158, -159, -160, -161, -162, -163, -164, -165, -166, -167, -168, -169, -170, -171, -172, -173, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 2, -"tl": 38, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -174, -175, -176, -177, -178, -179, -180, -181, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 128, -"tbk": 1, -"tl": 4714, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -182, -183, -184, -185, -186, -187, -188, -189, -190, -191, -192, -193, -194, -195, -196, -197, -198, -198, -199, -200, -201, -202 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 9, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -203, -204, -205, -206, -207, -110, -111, -112, -113, -114, -115, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 12801920, -"tbk": 200030, -"tl": 1752103, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -211, -212, -213, -214, -215, -216, -217, -218, -219, -220, -221, -222, -223, -224, -225, -226, -227, -24, -25, -26 -] -}, -{ -"tb": 3, -"tbk": 1, -"tl": 436, -"mb": 3, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -228, -229, -230, -231, -232, -233, -234, -235, -236, -237, -238, -239, -240, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -252, -253, -254, -26 -] -}, -{ -"tb": 644, -"tbk": 19, -"tl": 179, -"mb": 112, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -255, -256, -257, -258, -259, -260, -261, -262, -263, -264, -265, -266, -267, -268, -269, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 141, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -143, -144 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 75588628, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -278, -279, -280, -281, -282, -283, -284, -285, -286, -287, -288, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 28, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -289, -290, -291, -292, -293, -294, -295, -296, -297, -61, -62, -63, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 28, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -289, -290, -291, -292, -293, -294, -295, -296, -297, -61, -62, -63, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 2, -"tbk": 1, -"tl": 36, -"mb": 2, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -299, -300, -301, -302, -303, -304, -305, -306, -307, -308, -309, -310, -311, -312, -130, -131, -132, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 672, -"tbk": 3, -"tl": 0, -"mb": 384, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -326, -327, -328, -13, -14, -15, -16, -17, -18, -74 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 953, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -332, -333, -334, -335, -336, -199, -200, -201, -202, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -116 -] -}, -{ -"tb": 87, -"tbk": 1, -"tl": 0, -"mb": 87, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -337, -338, -339, -340, -341, -342, -343, -344, -345, -346, -347, -348, -349, -350, -351, -352, -268, -269, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 18, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -359, -360, -361, -362, -363, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75571093, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -364, -365, -366, -367, -368, -369, -370, -371, -372, -373, -374, -375, -376, -377, -378, -379, -380, -381, -382, -383, -384, -385, -386, -387, -388, -389, -390, -391 -] -}, -{ -"tb": 27, -"tbk": 4, -"tl": 528, -"mb": 27, -"mbk": 4, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -392, -393, -394, -395, -396, -397, -398, -399, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 1, -"tbk": 1, -"tl": 438, -"mb": 1, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -400, -401, -402, -403, -404, -405, -406, -407, -408, -409, -410, -411, -412, -413, -414, -415, -268, -269, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 1152, -"tbk": 1, -"tl": 353, -"mb": 1152, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -416, -417, -418, -419, -420, -421, -422, -423, -424, -425, -426, -427, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 83, -"mb": 160, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -428, -429, -430, -431, -432, -433, -434, -435, -436, -437, -438, -439, -440, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 75600112, -"mb": 80, -"mbk": 1, -"gb": 80, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -65, -66, -67, -68, -69, -70, -71, -72, -73, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 72902867, -"mb": 72, -"mbk": 1, -"gb": 72, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -441, -442, -443, -444, -445, -446, -447, -448, -449, -450, -451, -452, -453, -454, -455, -456, -457, -458, -459, -460, -461, -462, -463, -464, -465, -223 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -474, -475, -476, -477, -478, -479, -13, -14, -15, -16, -17, -18, -19 -] -}, -{ -"tb": 560, -"tbk": 30, -"tl": 1121, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -481, -482, -483, -484, -485, -486, -487, -488, -489, -490, -491, -492, -493, -494, -495, -496, -497, -498, -499, -500, -501, -502, -503, -504, -505, -506, -507, -508, -509, -510, -511, -512, -513, -514, -515, -516, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 24, -"tbk": 2, -"tl": 75593896, -"mb": 16, -"mbk": 1, -"gb": 8, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -517, -518, -519, -520, -521, -522, -523, -524, -525, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 75579803, -"mb": 80, -"mbk": 1, -"gb": 80, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -528, -529, -530, -531, -532, -533, -534, -535, -536, -537, -130, -131, -132, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 192, -"tbk": 6, -"tl": 1151, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -541, -542, -543, -544, -545, -546, -547, -548, -549, -550, -551, -552, -553, -554, -555, -556, -198 -] -}, -{ -"tb": 576, -"tbk": 4, -"tl": 13680, -"mb": 576, -"mbk": 4, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -557, -558, -559, -560, -561, -562, -563, -564, -565, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 158, -"mb": 72, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -575, -547, -548, -556, -576, -577, -578, -579, -580, -581, -198, -199, -200, -201, -202, -128, -129, -130, -131, -132 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 9236, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -61, -62, -63, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 11, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -582, -583, -584, -585, -586, -130, -131, -132, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75571168, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -596, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -390, -391, -609, -610, -611, -612 -] -}, -{ -"tb": 120, -"tbk": 2, -"tl": 75589478, -"mb": 96, -"mbk": 1, -"gb": 24, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -613, -614, -615, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92 -] -}, -{ -"tb": 24, -"tbk": 3, -"tl": 2557, -"mb": 24, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -620, -621, -622, -623, -624, -625, -626, -627, -628, -629, -630, -631, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 29, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -632, -633, -634, -635, -636, -637, -638, -639, -640, -641, -642, -643, -644, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 75586947, -"mb": 160, -"mbk": 1, -"gb": 160, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -645, -646, -647, -648, -649, -650, -651, -652, -650, -653, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 2, -"tbk": 1, -"tl": 75580411, -"mb": 2, -"mbk": 1, -"gb": 2, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -654, -655, -656, -657, -658, -659, -660, -661, -662, -663, -664, -665, -666, -667, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 800, -"tbk": 2, -"tl": 0, -"mb": 640, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -668, -669, -670, -671, -672, -673, -674, -176, -177, -178, -179, -180, -181, -16, -17, -18, -143, -144, -90, -91, -92 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 891, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -678, -679, -680, -681, -682, -199, -200, -201, -202, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -103, -104 -] -}, -{ -"tb": 1792, -"tbk": 3, -"tl": 75571521, -"mb": 1024, -"mbk": 1, -"gb": 1024, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -683, -684, -685, -686, -687, -688, -689, -690, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -698, -391 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 3435, -"mb": 72, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -699, -700, -701, -702, -703, -704, -705, -706, -707, -708, -709, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 1152, -"tbk": 1, -"tl": 89, -"mb": 1152, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -416, -417, -418, -419, -420, -421, -422, -423, -424, -425, -426, -427, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 896, -"tbk": 1, -"tl": 182, -"mb": 896, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -710, -711, -712, -713, -714, -715, -716, -717, -718, -719, -720, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 41, -"tbk": 10, -"tl": 620, -"mb": 18, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -721, -722, -723, -724, -725, -726, -727, -728, -729, -730, -138, -139, -140, -141, -142, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 616, -"tbk": 3, -"tl": 22, -"mb": 352, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -255, -256, -257, -258, -259, -260, -261, -262, -263, -264, -265, -351, -352, -731, -732, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 11008, -"tbk": 6, -"tl": 75579623, -"mb": 4096, -"mbk": 1, -"gb": 3072, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -733, -734, -735, -736, -737, -738, -739, -740, -741, -742, -743, -744, -745, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 96, -"tbk": 3, -"tl": 64, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -746, -747, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23 -] -}, -{ -"tb": 300, -"tbk": 1, -"tl": 75570025, -"mb": 300, -"mbk": 1, -"gb": 300, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -750, -751, -752, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -753, -391 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 2048, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -754, -755, -756, -757, -758, -759, -760, -761, -762, -763, -764, -765, -766, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 460, -"tbk": 1, -"tl": 136, -"mb": 460, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -767, -768, -769, -770, -771, -772, -773, -61, -62, -63, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 379, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -774, -775, -576, -577, -578, -579, -580, -581, -198, -776, -777, -778, -576, -577, -578, -579, -580, -581, -198 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 60935, -"mb": 160, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -779, -780, -781, -782, -783, -784, -762, -763, -764, -765, -766, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 1228, -"tbk": 1, -"tl": 33, -"mb": 1228, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -57, -58, -59, -60, -61, -62, -63, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 75599660, -"mb": 16, -"mbk": 1, -"gb": 16, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -528, -529, -530, -531, -532, -533, -534, -535, -536, -537, -61, -62, -63, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 19200, -"tbk": 40, -"tl": 115, -"mb": 1024, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -791, -792, -793, -794, -795, -796, -797, -351, -352, -503, -504, -505, -506, -507, -508, -509, -510, -511, -512, -513, -514, -515, -516, -270, -271, -272, -24, -25 -] -}, -{ -"tb": 26, -"tbk": 1, -"tl": 77515139, -"mb": 26, -"mbk": 1, -"gb": 26, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -798, -799, -800, -801, -802, -803, -804, -805, -806, -807, -808, -809, -810, -811, -812, -813, -814, -815, -816, -817, -818, -819, -820, -821, -822, -823, -26 -] -}, -{ -"tb": 224, -"tbk": 6, -"tl": 442, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -824, -825, -826, -827, -556, -828, -829, -830, -831, -832, -833, -834, -835, -836, -837, -838, -554, -555, -839, -840, -841, -842, -843, -844 -] -}, -{ -"tb": 40, -"tbk": 2, -"tl": 75585704, -"mb": 32, -"mbk": 1, -"gb": 8, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -845, -846, -847, -848, -849, -850, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23 -] -}, -{ -"tb": 240, -"tbk": 2, -"tl": 75581905, -"mb": 192, -"mbk": 1, -"gb": 48, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -851, -852, -853, -854, -855, -856, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 1558, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -857, -858, -859, -860, -762, -763, -764, -765, -766, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 4794, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -861, -862, -863, -864, -865, -866, -867, -868, -556, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 568, -"tbk": 2, -"tl": 151184195, -"mb": 568, -"mbk": 2, -"gb": 568, -"gbk": 2, -"eb": 0, -"ebk": 0, -"fs": [ -869, -870, -871, -872, -873, -874, -875, -876, -877, -878, -61, -62, -63, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 400, -"tbk": 1, -"tl": 75576656, -"mb": 400, -"mbk": 1, -"gb": 400, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -879, -880, -881, -882, -883, -884, -61, -62, -63, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 77514291, -"mb": 8, -"mbk": 1, -"gb": 8, -"gbk": 1, -"eb": 8, -"ebk": 1, -"fs": [ -885, -886, -887, -888, -889, -890, -891, -892, -893, -894, -895, -896, -897, -898, -899, -900, -901, -902, -903, -904, -905, -906, -907, -908, -909, -910, -911, -912, -913, -914, -915, -916, -917, -918, -919, -920, -921, -922, -923, -924, -925, -926, -927, -928, -929, -930, -931 -] -}, -{ -"tb": 240, -"tbk": 3, -"tl": 8433, -"mb": 240, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -932, -933, -934, -935, -936, -937, -762, -763, -764, -765, -766, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 316, -"tbk": 1, -"tl": 75570279, -"mb": 316, -"mbk": 1, -"gb": 316, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -938, -939, -940, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -941, -391 -] -}, -{ -"tb": 1152, -"tbk": 1, -"tl": 117, -"mb": 1152, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -416, -417, -418, -419, -420, -421, -422, -423, -424, -425, -426, -427, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 76, -"tbk": 1, -"tl": 75570576, -"mb": 76, -"mbk": 1, -"gb": 76, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -750, -751, -752, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -942, -391 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 54, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -946, -947, -948, -949, -950, -951, -952, -953, -954, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 88, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -955, -956, -957, -958, -959, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23 -] -}, -{ -"tb": 83, -"tbk": 1, -"tl": 38, -"mb": 83, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -960, -961, -962, -963, -964, -965, -966, -967, -61, -62, -63, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 112, -"tbk": 2, -"tl": 15879, -"mb": 112, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -968, -969, -970, -971, -972, -973, -974, -975, -976, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 3, -"tbk": 3, -"tl": 81, -"mb": 1, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -977, -978, -979, -980, -981, -982, -983, -984, -985, -748, -749, -746, -747, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 18, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -986, -987, -988, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 128, -"tbk": 1, -"tl": 56, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -989, -990, -991, -992, -993, -994, -995, -996, -997, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 80, -"tbk": 2, -"tl": 75594336, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -998, -999, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 8064, -"tbk": 6, -"tl": 223, -"mb": 4096, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -93, -94, -95, -96, -97, -98, -99, -100, -101, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -64 -] -}, -{ -"tb": 32, -"tbk": 2, -"tl": 420, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -828, -829, -830, -831, -832, -833, -834, -835, -836, -837, -838, -554, -555, -839, -840, -841, -842, -843, -844, -199, -200, -201, -202 -] -}, -{ -"tb": 96, -"tbk": 6, -"tl": 26, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1000, -1001, -1002, -1003, -1004, -556, -828, -829, -830, -831, -832, -833, -549, -550, -551, -552, -553, -554, -555, -839, -840, -841, -842, -843, -844, -199, -200, -201, -202, -128, -129 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 146, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -774, -775, -198, -199, -200, -201, -202, -128, -129, -130, -131, -132, -13, -14, -15 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 77514955, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -1005, -1006, -1007, -1008, -1009, -1010, -1011, -1012, -1013, -1014, -1015, -1016, -1017, -1018, -1019, -1020, -1021, -1022, -1023, -1024, -1025, -1026, -1027, -1028, -1029 -] -}, -{ -"tb": 11, -"tbk": 1, -"tl": 75578117, -"mb": 11, -"mbk": 1, -"gb": 11, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -654, -655, -656, -657, -658, -659, -660, -661, -662, -663, -664, -665, -666, -667, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 23, -"tbk": 1, -"tl": 28, -"mb": 23, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -977, -978, -979, -980, -981, -982, -983, -984, -985, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 12, -"tbk": 4, -"tl": 123, -"mb": 9, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -721, -722, -723, -724, -725, -726, -727, -728, -729, -730, -138, -139, -140, -141, -142, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 4, -"tbk": 1, -"tl": 75576751, -"mb": 4, -"mbk": 1, -"gb": 4, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1030, -1031, -1032, -1033, -1034, -1035, -1036, -1037, -1038, -1039, -1040, -61, -62, -63, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 184320, -"tbk": 8, -"tl": 75593896, -"mb": 65536, -"mbk": 1, -"gb": 54272, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -733, -734, -735, -736, -737, -738, -739, -740, -741, -742, -743, -744, -745, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 2, -"tbk": 1, -"tl": 37, -"mb": 2, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -299, -300, -301, -302, -303, -304, -305, -306, -307, -308, -309, -310, -311, -312, -130, -131, -132, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 1819, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -1041, -1042, -1043, -1044, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 248, -"tbk": 5, -"tl": 296, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -481, -482, -483, -484, -485, -486, -487, -488, -489, -490, -491, -492, -493, -494, -495, -496, -497, -498, -499, -500, -501, -502, -731, -732, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 896, -"tbk": 3, -"tl": 146, -"mb": 512, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -93, -94, -95, -96, -97, -98, -99, -100, -101, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -143, -144 -] -}, -{ -"tb": 120, -"tbk": 1, -"tl": 2745, -"mb": 120, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1045, -1046, -1047, -1048, -716, -717, -718, -719, -720, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1049, -1050, -1051, -1052, -1053, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23 -] -}, -{ -"tb": 40, -"tbk": 1, -"tl": 75579428, -"mb": 40, -"mbk": 1, -"gb": 40, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -869, -870, -871, -872, -873, -874, -875, -876, -877, -878, -61, -62, -63, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 3968, -"tbk": 5, -"tl": 525, -"mb": 2048, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -93, -94, -95, -96, -97, -98, -99, -100, -101, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -208, -209, -210 -] -}, -{ -"tb": 1, -"tbk": 1, -"tl": 29, -"mb": 1, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -977, -978, -979, -980, -981, -982, -983, -984, -985, -1054, -1055, -642, -643, -644, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 240, -"tbk": 3, -"tl": 226756958, -"mb": 240, -"mbk": 3, -"gb": 240, -"gbk": 3, -"eb": 0, -"ebk": 0, -"fs": [ -528, -529, -530, -531, -532, -533, -534, -535, -536, -537, -130, -131, -132, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 240, -"tbk": 2, -"tl": 75599911, -"mb": 192, -"mbk": 1, -"gb": 48, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -851, -852, -853, -854, -855, -856, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 2547, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1056, -1057, -1058, -1059, -1060, -761, -762, -763, -764, -765, -766, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 27, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -289, -290, -291, -292, -293, -294, -295, -296, -297, -61, -62, -63, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 112, -"tbk": 8, -"tl": 518, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1061, -1062, -1063, -1064, -549, -550, -551, -552, -553, -554, -555, -556, -198, -576, -577, -578, -579, -580, -581, -198, -199, -200, -201, -202, -128, -129 -] -}, -{ -"tb": 3, -"tbk": 1, -"tl": 455, -"mb": 3, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -228, -229, -230, -231, -232, -233, -234, -235, -236, -237, -238, -239, -240, -241, -242, -243, -244, -1065, -1066, -1067, -1068, -1069, -1070, -1071, -1072, -250, -251, -252, -253, -254, -26 -] -}, -{ -"tb": 45, -"tbk": 1, -"tl": 75588640, -"mb": 45, -"mbk": 1, -"gb": 45, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1073, -1074, -1075, -1076, -1077, -1078, -1079, -1080, -1081, -1082, -1083, -1084, -1085, -1086, -1087, -24, -25, -26 -] -}, -{ -"tb": 108, -"tbk": 1, -"tl": 72902816, -"mb": 108, -"mbk": 1, -"gb": 108, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1088, -1089, -1090, -1091, -1092, -1093, -1094, -1095, -1096, -1097, -1098, -1099, -1100, -1101, -1102, -448, -449, -450, -451, -452, -453, -454, -455, -456, -457, -458, -459, -460, -461, -462, -463, -464, -465, -223 -] -}, -{ -"tb": 400, -"tbk": 1, -"tl": 75585590, -"mb": 400, -"mbk": 1, -"gb": 400, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -879, -880, -881, -882, -883, -884, -130, -131, -132, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 144, -"tbk": 1, -"tl": 59, -"mb": 144, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -1103, -1104, -1105, -1106, -1107, -1108, -1109, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 644, -"tbk": 3, -"tl": 21, -"mb": 368, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -255, -256, -257, -258, -259, -260, -261, -262, -263, -264, -265, -351, -352, -268, -269, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 34, -"tbk": 1, -"tl": 75572782, -"mb": 34, -"mbk": 1, -"gb": 34, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -654, -655, -656, -657, -658, -659, -660, -661, -662, -663, -664, -665, -666, -667, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 128, -"tbk": 1, -"tl": 136, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -989, -990, -991, -992, -993, -994, -995, -996, -997, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1110, -1111, -1112, -1113, -1114, -1115, -1116, -1117, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 40, -"tbk": 1, -"tl": 75584971, -"mb": 40, -"mbk": 1, -"gb": 40, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1118, -1119, -1120, -1121, -1122, -1123, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 1437, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -932, -933, -934, -935, -936, -937, -762, -763, -764, -765, -766, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 77515085, -"mb": 48, -"mbk": 1, -"gb": 48, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1124, -1125, -1126, -1127, -1128, -1129, -1130, -1131, -1132, -1133, -1134, -1135, -1136, -26 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 150, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -861, -862, -863, -864, -865, -866, -867, -868, -556, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 3308, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -1137, -1138, -1139, -1140, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 28, -"tbk": 1, -"tl": 77515129, -"mb": 28, -"mbk": 1, -"gb": 28, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1141, -1142, -1143, -1144, -1145, -1146, -1147, -1148, -1149, -1150, -1151, -1152, -1153, -1154, -1155, -1156, -1157, -1158, -1159, -1160, -1161, -1162, -1163, -1164, -1165, -1166, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 37, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1167, -1168, -1169, -1170, -1171, -1172, -1114, -1115, -1116, -1117, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 597, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -298 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 37, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -960, -961, -962, -963, -964, -965, -966, -967, -130, -131, -132, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 1966, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1173, -1174, -1175, -1176, -1177, -1178, -762, -763, -764, -765, -766, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 4320, -"tbk": 6, -"tl": 75572170, -"mb": 1536, -"mbk": 1, -"gb": 1344, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1179, -1180, -1181, -1182, -1183, -1184, -1185, -1186, -130, -131, -132, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25 -] -}, -{ -"tb": 216, -"tbk": 1, -"tl": 793, -"mb": 216, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1187, -1188, -1189, -1190, -1191, -1192, -1193, -1194, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 3, -"tbk": 1, -"tl": 518, -"mb": 3, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -228, -229, -230, -231, -232, -233, -234, -235, -236, -237, -238, -239, -240, -241, -242, -243, -244, -245, -246, -247, -248, -249, -1195, -1196, -26 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -474, -475, -476, -477, -478, -479, -13, -14, -15, -16, -17, -18, -74 -] -}, -{ -"tb": 80, -"tbk": 2, -"tl": 75612680, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -998, -999, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 75571834, -"mb": 16, -"mbk": 1, -"gb": 16, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1197, -1198, -1199, -1200, -1201, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 1624, -"mb": 72, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -699, -700, -701, -702, -1202, -561, -562, -563, -564, -565, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 86400000, -"tbk": 100000, -"tl": 11071011211, -"mb": 8640000, -"mbk": 10000, -"gb": 8640000, -"gbk": 10000, -"eb": 0, -"ebk": 0, -"fs": [ -47, -1203, -1204, -1205, -1206, -1207, -1208, -1209, -1210, -1211, -1212, -1213, -1214, -1215, -1216, -1217 -] -}, -{ -"tb": 108, -"tbk": 1, -"tl": 160, -"mb": 108, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1088, -1089, -1090, -1091, -1092, -1093, -1094, -1095, -1096, -1097, -1098, -1099, -1100, -1101, -1102, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -390, -391 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 1836, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -575, -547, -548, -556, -198, -576, -577, -578, -579, -580, -581, -549, -550, -551, -552, -553, -554, -555, -198 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 75594326, -"mb": 96, -"mbk": 1, -"gb": 96, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1218, -1219, -1220, -1221, -1222, -1223, -1224, -130, -131, -132, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 40, -"tbk": 2, -"tl": 75572244, -"mb": 32, -"mbk": 1, -"gb": 8, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -845, -846, -847, -848, -849, -850, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25 -] -}, -{ -"tb": 432, -"tbk": 2, -"tl": 5091, -"mb": 432, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1187, -1188, -1189, -1190, -1191, -1192, -1193, -1194, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 512, -"tbk": 1, -"tl": 75591576, -"mb": 512, -"mbk": 1, -"gb": 512, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1225, -1226, -1227, -1228, -1229, -1230, -1231, -1232, -1233, -1234, -1235, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 144, -"tbk": 1, -"tl": 68, -"mb": 144, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -1103, -1104, -1105, -1106, -1107, -1108, -1109, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 75578340, -"mb": 80, -"mbk": 1, -"gb": 80, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -65, -66, -67, -68, -69, -70, -71, -72, -73, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 128, -"tbk": 1, -"tl": 1719, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1236, -1237, -1238, -1239, -1240, -1241, -1242, -1243, -1244, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 2, -"tl": 400, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -1245, -1246, -554, -555, -839, -840, -841, -842, -843, -844, -199, -200, -201, -202, -128, -129 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 156, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1247, -1248, -1249, -1250, -1251, -1252, -1253, -1254, -191, -198, -199, -200, -201, -202, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -143, -144 -] -}, -{ -"tb": 440, -"tbk": 1, -"tl": 27, -"mb": 440, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -57, -58, -59, -60, -61, -62, -63, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 67, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -289, -290, -291, -292, -293, -294, -295, -296, -297, -130, -131, -132, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 3902, -"mb": 160, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1255, -1256, -1257, -1258, -937, -762, -763, -764, -765, -766, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 1504, -"tbk": 61, -"tl": 595, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -255, -256, -257, -258, -259, -260, -261, -262, -263, -264, -265, -266, -267, -503, -504, -505, -506, -507, -508, -509, -510, -511, -512, -513, -514, -515, -516, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 128, -"tbk": 1, -"tl": 30723, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1236, -1237, -1238, -1239, -1240, -1241, -1242, -1243, -1244, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 75584996, -"mb": 16, -"mbk": 1, -"gb": 16, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1197, -1198, -1199, -1200, -1201, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 304, -"tbk": 1, -"tl": 92, -"mb": 304, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -767, -768, -769, -770, -771, -772, -773, -61, -62, -63, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 2000, -"tbk": 1, -"tl": 75588772, -"mb": 2000, -"mbk": 1, -"gb": 2000, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1259, -1260, -1261, -1262, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 240, -"tbk": 3, -"tl": 0, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1263, -1264, -1265, -1266, -1267, -761, -762, -763, -764, -765, -766, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 1448, -"tbk": 1, -"tl": 75600425, -"mb": 1448, -"mbk": 1, -"gb": 1448, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1268, -1269, -1270, -1271, -1272, -1273, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 252, -"tbk": 1, -"tl": 88, -"mb": 252, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -428, -429, -430, -431, -432, -433, -434, -435, -436, -437, -438, -439, -440, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75569933, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1274, -1275, -1276, -1277, -1278, -1279, -1280, -1281, -1282, -1283, -1284, -1285, -1286, -1287, -1288, -1289, -377, -378, -379, -380, -381, -382, -383, -384, -385, -386, -387, -388, -389, -753, -391 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 20, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1290, -1291, -1292, -1293, -1294, -176, -177, -178, -179, -180, -181, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 3, -"tl": 108, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1167, -1168, -1169, -1170, -746, -747, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 8592, -"tbk": 7, -"tl": 75581278, -"mb": 3072, -"mbk": 1, -"gb": 2544, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1179, -1180, -1181, -1182, -1183, -1184, -1185, -1186, -61, -62, -63, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 64, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -289, -290, -291, -292, -293, -294, -295, -296, -297, -130, -131, -132, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 30248, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1255, -1256, -1257, -1258, -937, -762, -763, -764, -765, -766, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 2, -"tbk": 1, -"tl": 37, -"mb": 2, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -299, -300, -301, -302, -303, -304, -305, -306, -307, -308, -309, -310, -311, -312, -61, -62, -63, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 240, -"tbk": 3, -"tl": 8863, -"mb": 240, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -779, -780, -781, -782, -783, -784, -762, -763, -764, -765, -766, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 1316, -"tbk": 1, -"tl": 29, -"mb": 1316, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1295, -1296, -1297, -1298, -1299, -1300, -1301, -1302, -1303, -1304, -1305, -1306, -1307, -1308, -1309, -1310, -1311, -1312, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 3, -"tbk": 3, -"tl": 312, -"mb": 3, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -392, -393, -394, -395, -396, -397, -398, -399, -9, -10, -746, -747, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23 -] -}, -{ -"tb": 108, -"tbk": 1, -"tl": 208, -"mb": 108, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1088, -1089, -1090, -1091, -1092, -1093, -1094, -1095, -1096, -1097, -1098, -1099, -1100, -1101, -1102, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -390, -391 -] -}, -{ -"tb": 14548770, -"tbk": 160, -"tl": 25792670, -"mb": 786432, -"mbk": 1, -"gb": 786432, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -1313, -1314, -1315, -1316, -1317, -1318, -1319, -1320, -1321, -1322, -224, -225, -226, -227, -24, -25, -26 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 0, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1263, -1264, -1265, -1266, -1323, -1324, -1325, -1326, -1327, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 944, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -678, -679, -680, -681, -682, -199, -200, -201, -202, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -116 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 337, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -861, -862, -863, -864, -865, -866, -867, -868, -556, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 400, -"tbk": 1, -"tl": 75581268, -"mb": 400, -"mbk": 1, -"gb": 400, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -879, -880, -881, -882, -883, -884, -61, -62, -63, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 1398020, -"tbk": 200030, -"tl": 3479530, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1328, -1329, -1330, -1331, -1332, -1333, -1334, -1335, -1336, -1337, -1338, -223, -224, -225, -226, -227, -24, -25, -26 -] -}, -{ -"tb": 3, -"tbk": 2, -"tl": 2800, -"mb": 3, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1339, -1340, -1341, -1342, -1343, -1344, -1345, -1346, -1347, -937, -762, -763, -764, -765, -766, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 2653, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -145, -146, -147, -148, -149, -150, -151, -152, -153, -154, -155, -156, -157, -158, -159, -160, -161, -162, -163, -164, -165, -166, -167, -168, -169, -170, -171, -172, -173, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 672, -"tbk": 12, -"tl": 43632, -"mb": 672, -"mbk": 12, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1348, -1349, -1350, -1351, -1352, -1353, -1354, -1355, -1356, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 53, -"tbk": 1, -"tl": 38, -"mb": 53, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -960, -961, -962, -963, -964, -965, -966, -967, -130, -131, -132, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 75571614, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -1357, -1358, -1359, -1360, -1361, -1362, -1363, -1364, -1365, -1366, -1367, -1368, -1369, -457, -458, -604, -605, -606, -607, -608, -698, -391, -609, -610, -611, -612, -24, -25 -] -}, -{ -"tb": 24, -"tbk": 2, -"tl": 75579623, -"mb": 16, -"mbk": 1, -"gb": 8, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -517, -518, -519, -520, -521, -522, -523, -524, -525, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 9, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -582, -583, -584, -585, -586, -61, -62, -63, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 375, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1370, -1371, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23 -] -}, -{ -"tb": 85, -"tbk": 1, -"tl": 546, -"mb": 85, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1372, -1373, -1374, -1375, -1376, -1377, -1378, -1379, -1380, -1381, -1382, -1383, -1384, -1385, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 1022, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1386, -1387, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23 -] -}, -{ -"tb": 1152, -"tbk": 1, -"tl": 216, -"mb": 1152, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -416, -417, -418, -419, -420, -421, -422, -423, -424, -425, -426, -427, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 1104, -"tbk": 2, -"tl": 291, -"mb": 736, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1388, -1389, -1390, -1391, -1392, -1393, -1394, -1395, -1396, -1397, -1398, -250, -251, -252, -253, -254, -26 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -596, -448, -1399, -1400, -1401, -1402, -1403, -1404, -1405, -1406, -457, -458, -459, -460, -461, -462, -463, -464, -465 -] -}, -{ -"tb": 183, -"tbk": 2, -"tl": 1876752, -"mb": 122, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -1419, -1420, -1421, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 220, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -779, -780, -781, -1422, -1423, -1424, -1425, -1426, -1427, -1428, -1429, -1430, -1431, -1432, -1433, -1434, -1435, -1436, -1437, -1438, -1439, -1440, -1441, -1442, -1443, -1444, -1445, -1446, -1447, -1448, -1449, -1450, -1451, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 34, -"tbk": 1, -"tl": 28, -"mb": 34, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -977, -978, -979, -980, -981, -982, -983, -984, -985, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 167, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -208, -209, -210 -] -}, -{ -"tb": 1136, -"tbk": 2, -"tl": 15348, -"mb": 1136, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1452, -1453, -1454, -1455, -1456, -1457, -1458, -1459, -1460, -1461, -1462, -1463, -1464, -1465, -1466, -138, -139, -140, -141, -142, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 2, -"tl": 75589479, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -998, -999, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 11, -"tbk": 1, -"tl": 29, -"mb": 11, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -977, -978, -979, -980, -981, -982, -983, -984, -985, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 56, -"tbk": 1, -"tl": 77515112, -"mb": 56, -"mbk": 1, -"gb": 56, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1467, -1468, -1469, -1470, -1471, -1472, -1473, -1474, -1475, -1476, -1477, -1478, -1479, -1480, -1481, -26 -] -}, -{ -"tb": 240, -"tbk": 2, -"tl": 75589478, -"mb": 192, -"mbk": 1, -"gb": 48, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -851, -852, -853, -854, -855, -856, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92 -] -}, -{ -"tb": 296, -"tbk": 1, -"tl": 27, -"mb": 296, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -57, -58, -59, -60, -61, -62, -63, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -474, -475, -1482, -1483, -1484, -1485, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 120, -"tbk": 2, -"tl": 75594335, -"mb": 96, -"mbk": 1, -"gb": 24, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -613, -614, -615, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 512, -"tbk": 1, -"tl": 75581175, -"mb": 512, -"mbk": 1, -"gb": 512, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1225, -1226, -1227, -1228, -1229, -1230, -1231, -1232, -1233, -1234, -1235, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 970, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -116 -] -}, -{ -"tb": 3968, -"tbk": 5, -"tl": 373, -"mb": 2048, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -93, -94, -95, -96, -97, -98, -99, -100, -101, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -19 -] -}, -{ -"tb": 2, -"tbk": 1, -"tl": 28, -"mb": 2, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -977, -978, -979, -980, -981, -982, -983, -984, -985, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 16680, -"tbk": 6, -"tl": 90, -"mb": 12688, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1486, -1487, -1488, -1489, -1490, -1491, -1492, -1493, -1494, -1495, -1496, -1497, -1498, -1499, -1500, -1501, -1502, -1503, -1504, -1505, -1506, -1507, -1508, -1509, -1510, -1511, -1512, -1513, -1514 -] -}, -{ -"tb": 336, -"tbk": 7, -"tl": 0, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1515, -1516, -1517, -1518, -1519, -176, -177, -178, -179, -180, -181, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75630559, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1520, -1521, -1522, -1523, -1524, -1525, -1526, -1527, -1528, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 0, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -105, -106, -107, -108, -109, -110, -111, -112, -113, -114, -115, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 1352, -"tbk": 1, -"tl": 130, -"mb": 1352, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -1103, -1104, -1105, -1106, -1107, -1108, -1109, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 166, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -678, -679, -680, -681, -682, -199, -200, -201, -202, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -143, -144 -] -}, -{ -"tb": 1, -"tbk": 1, -"tl": 19, -"mb": 1, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -392, -393, -394, -395, -396, -397, -398, -399, -9, -10, -1171, -1172, -1114, -1115, -1116, -1117, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 2400, -"mb": 72, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1529, -1530, -1531, -1532, -1533, -561, -562, -563, -564, -565, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 240, -"tbk": 2, -"tl": 75585704, -"mb": 192, -"mbk": 1, -"gb": 48, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -851, -852, -853, -854, -855, -856, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 20284, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -332, -333, -334, -335, -336, -199, -200, -201, -202, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -88, -89 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1110, -1111, -1112, -1113, -1054, -1055, -642, -643, -644, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 75571569, -"mb": 72, -"mbk": 1, -"gb": 72, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -441, -442, -443, -444, -445, -446, -447, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -698, -391 -] -}, -{ -"tb": 7, -"tbk": 1, -"tl": 118, -"mb": 7, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -392, -393, -394, -395, -396, -397, -398, -399, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 4463, -"mb": 160, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -133, -134, -135, -136, -137, -138, -139, -140, -141, -142, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 1352, -"tbk": 1, -"tl": 72902877, -"mb": 1352, -"mbk": 1, -"gb": 1352, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -750, -751, -752, -449, -450, -451, -452, -453, -454, -455, -456, -457, -458, -459, -460, -461, -462, -463, -464, -465, -223 -] -}, -{ -"tb": 41, -"tbk": 1, -"tl": 3831, -"mb": 41, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -145, -146, -147, -148, -149, -150, -151, -152, -153, -154, -155, -156, -157, -158, -159, -160, -161, -162, -163, -164, -165, -166, -167, -168, -169, -170, -171, -172, -173, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 896, -"tbk": 1, -"tl": 309, -"mb": 896, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -710, -711, -712, -713, -714, -715, -716, -717, -718, -719, -720, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 2, -"tbk": 1, -"tl": 76, -"mb": 2, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -392, -393, -394, -395, -396, -397, -398, -399, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 3840, -"tbk": 6, -"tl": 75574438, -"mb": 1536, -"mbk": 1, -"gb": 864, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1179, -1180, -1181, -1182, -1183, -1184, -1185, -1186, -130, -131, -132, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23 -] -}, -{ -"tb": 1568, -"tbk": 3, -"tl": 194, -"mb": 896, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -791, -1534, -1535, -1536, -1537, -1538, -1539, -1540, -731, -732, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 30307, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -932, -933, -934, -935, -1541, -937, -762, -763, -764, -765, -766, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 72902726, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1542, -1543, -1544, -1545, -1546, -1547, -1548, -448, -1399, -1400, -1401, -1402, -1403, -1404, -1405, -1406, -457, -458, -459, -460, -461, -462, -463, -464, -465, -223 -] -}, -{ -"tb": 240, -"tbk": 3, -"tl": 0, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1263, -1264, -1265, -1266, -1323, -937, -762, -763, -764, -765, -766, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 75598916, -"mb": 80, -"mbk": 1, -"gb": 80, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -65, -66, -67, -68, -69, -70, -71, -72, -73, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 4, -"tbk": 1, -"tl": 75574086, -"mb": 4, -"mbk": 1, -"gb": 4, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1030, -1031, -1032, -1033, -1034, -1035, -1036, -1037, -1038, -1039, -1040, -61, -62, -63, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 28, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 864, -"tbk": 2, -"tl": 485, -"mb": 576, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -1549, -1550, -1551, -1552, -1553, -1554, -1555, -1556, -1557, -1558, -1559, -1560, -26 -] -}, -{ -"tb": 20, -"tbk": 1, -"tl": 19, -"mb": 20, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -57, -58, -59, -60, -61, -62, -63, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92 -] -}, -{ -"tb": 96, -"tbk": 3, -"tl": 186, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -541, -542, -543, -544, -545, -546, -547, -548, -556, -576, -577, -578, -579, -580, -581, -198, -199, -200, -201, -202 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 164, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -1561, -1562, -1563, -1564, -1436, -1437, -1438, -1439, -1440, -1441, -1442, -1443, -1444, -1445, -1446, -1447, -1448, -1449, -1450, -1451, -13, -14, -15, -16, -17, -18, -526, -527 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 2389, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1565, -1566, -1567, -561, -562, -563, -564, -565, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 2, -"tl": 305, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -828, -829, -830, -831, -832, -833, -1568, -1569, -1570, -1571, -1572, -554, -555, -839, -840, -841, -842, -843, -844, -199, -200, -201, -202 -] -}, -{ -"tb": 270, -"tbk": 4, -"tl": 184, -"mb": 90, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -1573, -1574, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576, -1577, -1578, -1579, -1580, -1581, -1582 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1583, -1584, -1585, -1586, -1587, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 4484, -"mb": 160, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -779, -780, -781, -782, -783, -784, -762, -763, -764, -765, -766, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 75578324, -"mb": 80, -"mbk": 1, -"gb": 80, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1588, -1589, -1590, -1591, -1592, -1593, -1594, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32640, -"tbk": 8, -"tl": 410, -"mb": 16384, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -93, -94, -95, -96, -97, -98, -99, -100, -101, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -526, -527 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 9, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -582, -583, -584, -585, -586, -130, -131, -132, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 1296, -"tbk": 24, -"tl": 1814260593, -"mb": 1296, -"mbk": 24, -"gb": 1296, -"gbk": 24, -"eb": 0, -"ebk": 0, -"fs": [ -528, -529, -530, -531, -532, -533, -534, -535, -536, -537, -130, -131, -132, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 910, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92 -] -}, -{ -"tb": 1056, -"tbk": 33, -"tl": 6708, -"mb": 288, -"mbk": 9, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -541, -542, -543, -544, -545, -1595, -1596, -1597, -556, -576, -577, -578, -579, -580, -581, -198, -198 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 135, -"mb": 160, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -932, -933, -934, -935, -1598, -1599, -762, -763, -764, -765, -766, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 400, -"tbk": 1, -"tl": 75610127, -"mb": 400, -"mbk": 1, -"gb": 400, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -879, -880, -881, -882, -883, -884, -130, -131, -132, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 0, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -105, -106, -107, -108, -109, -110, -111, -112, -113, -114, -115, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 2378, -"mb": 72, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -699, -700, -701, -702, -1600, -1601, -1602, -1603, -1604, -1605, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 1, -"tbk": 1, -"tl": 201, -"mb": 1, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1339, -1340, -1341, -1342, -1343, -1344, -1345, -1346, -1347, -1564, -1436, -1437, -1438, -1439, -1440, -1441, -1442, -1443, -1444, -1445, -1446, -1447, -1448, -1449, -1450, -1451, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 9296, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1370, -1371, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 132, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -61, -62, -63, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 1351, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1255, -1256, -1257, -1258, -937, -762, -763, -764, -765, -766, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 111, -"tbk": 1, -"tl": 39, -"mb": 111, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -960, -961, -962, -963, -964, -965, -966, -967, -61, -62, -63, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 59, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -1606, -1607, -1608, -1609, -61, -62, -63, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 75573909, -"mb": 16, -"mbk": 1, -"gb": 16, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1197, -1198, -1199, -1200, -1201, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 4, -"tbk": 1, -"tl": 75579880, -"mb": 4, -"mbk": 1, -"gb": 4, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1030, -1031, -1032, -1033, -1034, -1035, -1036, -1037, -1038, -1039, -1040, -130, -131, -132, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 10, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -582, -583, -584, -585, -586, -130, -131, -132, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 10, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -582, -583, -584, -585, -586, -130, -131, -132, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 224, -"tbk": 6, -"tl": 536, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -824, -825, -826, -827, -556, -828, -829, -830, -831, -832, -833, -549, -550, -551, -552, -553, -554, -555, -839, -840, -841, -842, -843, -844 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 28, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1610, -1611, -1612, -1613, -1614, -1615, -61, -62, -63, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 320, -"tbk": 4, -"tl": 208, -"mb": 160, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -932, -933, -934, -935, -1598, -1599, -762, -763, -764, -765, -766, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 216, -"tbk": 1, -"tl": 1670, -"mb": 216, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1187, -1188, -1189, -1190, -1191, -1192, -1193, -1194, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75578331, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1520, -1521, -1522, -1523, -1524, -1525, -1526, -1527, -1528, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 274, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -1606, -1607, -1608, -1609, -130, -131, -132, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 2027, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1616, -1617, -1618, -1619, -762, -763, -764, -765, -766, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 31044, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -145, -146, -147, -148, -149, -150, -151, -152, -153, -154, -155, -156, -157, -158, -159, -160, -161, -162, -163, -164, -165, -166, -167, -168, -169, -170, -171, -172, -173, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 97, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -955, -956, -957, -958, -959, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 480, -"tbk": 6, -"tl": 0, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1263, -1264, -1265, -1266, -1323, -937, -762, -763, -764, -765, -766, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1049, -1050, -1051, -1052, -1053, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 266, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1610, -1611, -1612, -1613, -1620, -1436, -1437, -1438, -1439, -1440, -1441, -1442, -1443, -1444, -1445, -1446, -1447, -1448, -1449, -1450, -1451, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 1080, -"tbk": 1, -"tl": 13, -"mb": 1080, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -1313, -1314, -1621, -1622, -1623, -1624, -1625, -1626, -1627, -1628, -1629, -1630, -1631, -1632, -1633, -1634, -1635, -1636, -26 -] -}, -{ -"tb": 1920, -"tbk": 3, -"tl": 0, -"mb": 640, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1637, -1638, -1639, -1640, -1641, -1642, -1643, -423, -424, -425, -426, -427, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 128, -"tbk": 1, -"tl": 77515181, -"mb": 128, -"mbk": 1, -"gb": 128, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1644, -1645, -1646, -1647, -1648, -1649, -1650, -1651, -1652, -1653, -1654, -1655, -26 -] -}, -{ -"tb": 212, -"tbk": 1, -"tl": 75571315, -"mb": 212, -"mbk": 1, -"gb": 212, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -938, -939, -940, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -390, -391 -] -}, -{ -"tb": 212, -"tbk": 1, -"tl": 12, -"mb": 212, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1295, -1296, -1297, -1298, -1299, -1300, -1301, -1302, -1303, -1304, -1305, -1306, -1307, -1308, -1309, -1310, -1311, -1312, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 75570016, -"mb": 72, -"mbk": 1, -"gb": 72, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -441, -442, -443, -444, -445, -446, -447, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -753, -391 -] -}, -{ -"tb": 228, -"tbk": 1, -"tl": 75571597, -"mb": 228, -"mbk": 1, -"gb": 228, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -938, -939, -940, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -698, -391 -] -}, -{ -"tb": 45, -"tbk": 2, -"tl": 129, -"mb": 30, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -1573, -1574, -1575, -1576, -1575, -1576, -1577, -1578, -1579, -1580, -1581, -1582, -1656, -1657, -1658, -270, -271, -272, -24, -25 -] -}, -{ -"tb": 400, -"tbk": 1, -"tl": 75594035, -"mb": 400, -"mbk": 1, -"gb": 400, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -879, -880, -881, -882, -883, -884, -130, -131, -132, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 74, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -1606, -1607, -1608, -1609, -61, -62, -63, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 75576574, -"mb": 16, -"mbk": 1, -"gb": 16, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1197, -1198, -1199, -1200, -1201, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 204, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -861, -862, -863, -864, -865, -866, -867, -868, -556, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1049, -1050, -1051, -1052, -1053, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 296, -"tbk": 1, -"tl": 18, -"mb": 296, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -57, -58, -59, -60, -61, -62, -63, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25 -] -}, -{ -"tb": 4, -"tbk": 1, -"tl": 75589520, -"mb": 4, -"mbk": 1, -"gb": 4, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1030, -1031, -1032, -1033, -1034, -1035, -1036, -1037, -1038, -1039, -1040, -130, -131, -132, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 366, -"tbk": 4, -"tl": 42, -"mb": 122, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -1659, -1660, -1661, -1662, -1663, -1664, -1665, -1666, -1667, -1668, -1669, -1670, -1671, -1672, -1673, -1674, -1675, -1676, -1677, -1674, -1678, -1679, -1680, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576 -] -}, -{ -"tb": 4971950, -"tbk": 598290, -"tl": 3861392, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1681, -1682, -1683, -1684, -1685, -1686, -1687, -1688, -1689, -1690, -1691, -1692, -1693, -1694, -1695, -1696, -1697, -1698, -1699, -1700, -1701, -1702, -1703, -1704, -1705, -1702, -1706, -1707, -1708, -223, -224, -225, -226, -227, -24, -25, -26 -] -}, -{ -"tb": 560, -"tbk": 30, -"tl": 1225, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -481, -482, -1709, -1710, -1711, -1712, -1713, -1714, -1715, -1716, -1717, -1718, -1719, -1720, -1721, -1722, -1723, -1724, -1725, -1726, -1727, -1728, -1729, -1730, -503, -504, -505, -506, -507, -508, -509, -510, -511, -512, -513, -514, -515, -516, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 260, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -116 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 1649, -"mb": 72, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -699, -700, -701, -702, -1600, -1601, -1602, -1603, -1604, -1605, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 24, -"tbk": 2, -"tl": 75574308, -"mb": 16, -"mbk": 1, -"gb": 8, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -517, -518, -519, -520, -521, -522, -523, -524, -525, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 26, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1731, -1732, -1733, -1734, -1735, -1736, -1737, -1738, -1739, -1740, -1741, -1742, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 388, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -575, -547, -548, -556, -198, -576, -577, -578, -579, -580, -581, -1568, -1569, -1570, -1571, -1572, -554, -555, -198 -] -}, -{ -"tb": 256, -"tbk": 2, -"tl": 4784, -"mb": 256, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1236, -1237, -1238, -1239, -1240, -1241, -1242, -1243, -1244, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 224, -"tbk": 1, -"tl": 20, -"mb": 224, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -57, -58, -59, -60, -130, -131, -132, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25 -] -}, -{ -"tb": 192, -"tbk": 4, -"tl": 0, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1515, -1516, -1517, -1518, -1519, -176, -177, -178, -179, -180, -181, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -474, -475, -1482, -1483, -1484, -1485, -13, -14, -15, -16, -17, -18, -74 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 9, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -582, -583, -584, -585, -586, -61, -62, -63, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 448, -"tbk": 3, -"tl": 19, -"mb": 288, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -174, -175, -176, -177, -178, -179, -180, -181, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 1566, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -133, -134, -135, -136, -1743, -1744, -1745, -138, -139, -140, -141, -142, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 215, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1746, -1747, -1748, -1749, -1750, -716, -717, -718, -719, -720, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 536, -"tbk": 1, -"tl": 77515983, -"mb": 536, -"mbk": 1, -"gb": 536, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1751, -1752, -1753, -1754, -1755, -1756, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 37, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1167, -1168, -1169, -1170, -11, -12, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 384, -"tbk": 2, -"tl": 151, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -1757, -1758, -1759, -762, -763, -764, -765, -766, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 56, -"tbk": 1, -"tl": 30924, -"mb": 56, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -968, -969, -970, -971, -972, -973, -974, -975, -976, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 3968, -"tbk": 5, -"tl": 896, -"mb": 2048, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -93, -94, -95, -96, -97, -98, -99, -100, -101, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -64 -] -}, -{ -"tb": 288, -"tbk": 2, -"tl": 4823, -"mb": 288, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -557, -558, -559, -560, -561, -562, -563, -564, -565, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 108, -"tbk": 1, -"tl": 75569970, -"mb": 108, -"mbk": 1, -"gb": 108, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1088, -1089, -1090, -1091, -1092, -1093, -1094, -1095, -1096, -1097, -1098, -1099, -1100, -1101, -1102, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -753, -391 -] -}, -{ -"tb": 1344, -"tbk": 3, -"tl": 249, -"mb": 768, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -946, -947, -948, -1760, -1761, -1762, -1763, -1764, -1765, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 108, -"tbk": 1, -"tl": 75571522, -"mb": 108, -"mbk": 1, -"gb": 108, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1088, -1089, -1090, -1091, -1092, -1093, -1094, -1095, -1096, -1097, -1098, -1099, -1100, -1101, -1102, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -698, -391 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1049, -1050, -1051, -1052, -1053, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23 -] -}, -{ -"tb": 80, -"tbk": 2, -"tl": 151177810, -"mb": 80, -"mbk": 2, -"gb": 80, -"gbk": 2, -"eb": 0, -"ebk": 0, -"fs": [ -869, -870, -871, -872, -873, -874, -875, -876, -877, -878, -61, -62, -63, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 70, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -1757, -1758, -1759, -762, -763, -764, -765, -766, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 40, -"tbk": 1, -"tl": 75600363, -"mb": 40, -"mbk": 1, -"gb": 40, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1118, -1119, -1120, -1121, -1122, -1123, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 3, -"tbk": 3, -"tl": 313, -"mb": 3, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -392, -393, -394, -395, -396, -397, -398, -399, -9, -10, -746, -747, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 72902848, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -596, -448, -449, -450, -451, -452, -453, -454, -455, -456, -457, -458, -459, -460, -461, -462, -463, -464, -465, -223, -224 -] -}, -{ -"tb": 96, -"tbk": 12, -"tl": 13156, -"mb": 48, -"mbk": 6, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -1766, -1595, -1596, -1597, -556, -198, -576, -577, -578, -579, -580, -581, -549, -550, -551, -552, -553, -554, -555 -] -}, -{ -"tb": 64, -"tbk": 2, -"tl": 3008, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -541, -542, -543, -544, -545, -546, -547, -548, -191, -198, -192, -193, -194, -195, -196, -197, -198 -] -}, -{ -"tb": 384, -"tbk": 2, -"tl": 3897, -"mb": 384, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -1561, -1562, -1563, -937, -762, -763, -764, -765, -766, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 5504, -"tbk": 20, -"tl": 2641, -"mb": 3328, -"mbk": 9, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -791, -792, -793, -794, -795, -796, -797, -266, -267, -268, -269, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 76, -"tbk": 9, -"tl": 2861, -"mb": 76, -"mbk": 9, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -337, -338, -339, -340, -341, -342, -343, -344, -345, -346, -347, -348, -349, -350, -266, -267, -731, -732, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 75576742, -"mb": 96, -"mbk": 1, -"gb": 96, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1218, -1219, -1220, -1221, -1222, -1223, -1224, -61, -62, -63, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 97, -"mb": 160, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -932, -933, -934, -935, -1598, -1599, -762, -763, -764, -765, -766, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 256, -"tbk": 2, -"tl": 4905, -"mb": 256, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1236, -1237, -1238, -1239, -1240, -1241, -1242, -1243, -1244, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 170, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -1766, -546, -547, -548, -556, -576, -577, -578, -579, -580, -581, -198, -199, -200, -201, -202, -128, -129 -] -}, -{ -"tb": 576, -"tbk": 2, -"tl": 129, -"mb": 384, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -946, -947, -948, -1760, -1761, -1762, -1763, -1764, -1765, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 2160, -"tbk": 6, -"tl": 232542498, -"mb": 1352, -"mbk": 4, -"gb": 1080, -"gbk": 3, -"eb": 1080, -"ebk": 3, -"fs": [ -1767, -1768, -1769, -1770, -1771, -1772, -1773, -1774, -1775, -1776, -1777, -1778, -1779, -1780, -1781, -1782, -1783, -1784, -1785, -1786, -1783, -1784, -1787, -1788, -1789, -1790, -1791, -1792, -1793, -898, -899, -900, -901, -902, -903, -904, -905, -906, -907, -908, -909, -910, -911, -912, -913, -914, -915, -916, -917, -918, -919, -920 -] -}, -{ -"tb": 96, -"tbk": 3, -"tl": 8944, -"mb": 96, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -1794, -1795, -1796, -1797, -1798, -1799, -1800, -1801, -1802, -1803, -1804, -1805, -1806, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -596, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -753 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 75570306, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1542, -1543, -1544, -1545, -1546, -1547, -1548, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -941, -391 -] -}, -{ -"tb": 38, -"tbk": 1, -"tl": 38, -"mb": 38, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -960, -961, -962, -963, -964, -965, -966, -967, -61, -62, -63, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 128, -"tbk": 1, -"tl": 1653, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1236, -1237, -1238, -1239, -1240, -1241, -1242, -1243, -1244, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 653, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -1313, -1314, -1807, -1808, -1809, -1810, -1811, -1812, -1813, -1814, -1815, -1816, -1817, -1818, -1819, -1820, -1821, -1822, -1823, -1824, -26 -] -}, -{ -"tb": 64, -"tbk": 2, -"tl": 436, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -541, -542, -543, -544, -545, -546, -547, -548, -191, -576, -577, -578, -579, -580, -581, -198, -776, -777, -778 -] -}, -{ -"tb": 480, -"tbk": 2, -"tl": 0, -"mb": 320, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1825, -1826, -1827, -1828, -1829, -1830, -1831, -1832, -1833, -1834, -1835, -1836, -1837, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75570233, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -596, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -941, -391, -609, -610, -611, -612 -] -}, -{ -"tb": 10, -"tbk": 1, -"tl": 75586956, -"mb": 10, -"mbk": 1, -"gb": 10, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -654, -655, -656, -657, -658, -659, -660, -661, -662, -663, -664, -665, -666, -667, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 4, -"tbk": 1, -"tl": 75592141, -"mb": 4, -"mbk": 1, -"gb": 4, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1030, -1031, -1032, -1033, -1034, -1035, -1036, -1037, -1038, -1039, -1040, -61, -62, -63, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 39, -"tbk": 7, -"tl": 310, -"mb": 18, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -721, -722, -723, -724, -725, -726, -727, -728, -729, -730, -138, -139, -140, -141, -142, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 29, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1610, -1611, -1612, -1613, -1614, -1615, -61, -62, -63, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 300, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1746, -1747, -1748, -1749, -1750, -716, -717, -718, -719, -720, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 75570251, -"mb": 72, -"mbk": 1, -"gb": 72, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -441, -442, -443, -444, -445, -446, -447, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -941, -391 -] -}, -{ -"tb": 240, -"tbk": 3, -"tl": 22778, -"mb": 240, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -779, -780, -781, -782, -783, -784, -762, -763, -764, -765, -766, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 3, -"tbk": 1, -"tl": 836, -"mb": 3, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -228, -229, -230, -231, -232, -233, -234, -235, -236, -237, -238, -239, -240, -241, -242, -243, -244, -1838, -1839, -1840, -1841, -1842, -1843, -1844, -1845, -1846, -26 -] -}, -{ -"tb": 112, -"tbk": 7, -"tl": 10037, -"mb": 32, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -828, -829, -830, -831, -832, -833, -199, -200, -201, -202, -128, -129, -61, -62, -63, -13, -14, -15 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 75588938, -"mb": 96, -"mbk": 1, -"gb": 96, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1218, -1219, -1220, -1221, -1222, -1223, -1224, -61, -62, -63, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 18, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1847, -1848, -1849, -1850, -1851, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 2409, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -75, -76, -77, -78, -79, -80, -81, -82, -83, -84, -85, -86, -87, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 316, -"tbk": 1, -"tl": 103, -"mb": 316, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -767, -768, -769, -770, -771, -772, -773, -61, -62, -63, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 40, -"tbk": 2, -"tl": 75594335, -"mb": 32, -"mbk": 1, -"gb": 8, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -845, -846, -847, -848, -849, -850, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 20, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -203, -204, -205, -206, -207, -110, -111, -112, -113, -1852, -1853, -1854, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 1400, -"tbk": 25, -"tl": 64906, -"mb": 1400, -"mbk": 25, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1348, -1349, -1350, -1351, -1352, -1353, -1354, -1355, -1356, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 1364, -"tbk": 1, -"tl": 2574, -"mb": 1364, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -767, -768, -769, -770, -771, -772, -773, -130, -131, -132, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 7564, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -932, -933, -934, -935, -1541, -937, -762, -763, -764, -765, -766, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 896, -"tbk": 16, -"tl": 58783, -"mb": 896, -"mbk": 16, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1348, -1349, -1350, -1351, -1352, -1353, -1354, -1355, -1356, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -474, -475, -476, -477, -478, -479, -13, -14, -15, -16, -17, -18, -298 -] -}, -{ -"tb": 440, -"tbk": 1, -"tl": 75571485, -"mb": 440, -"mbk": 1, -"gb": 440, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -750, -751, -752, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -698, -391 -] -}, -{ -"tb": 135, -"tbk": 10, -"tl": 377852993, -"mb": 90, -"mbk": 5, -"gb": 90, -"gbk": 5, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -1855, -1856, -1857, -1858, -1859, -1860, -1861, -1862, -1863, -1285, -1286, -1287, -1288, -1289, -377, -378, -379, -380, -381, -382, -383, -384, -385, -386, -387, -388, -389 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 4843, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1386, -1387, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -474, -475, -476, -477, -478, -479, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 21, -"tbk": 1, -"tl": 43, -"mb": 21, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -960, -961, -962, -963, -964, -965, -966, -967, -130, -131, -132, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 172825920, -"tbk": 200030, -"tl": 136964628771, -"mb": 17282592, -"mbk": 20003, -"gb": 864, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -1203, -1204, -1205, -1206, -1864, -1865, -1866, -1867, -1868, -1869, -1870, -1871, -1872, -1873, -1874, -1875, -1876, -1877, -1878, -1879, -1880, -1881, -1882, -1883, -1217, -225, -226, -227 -] -}, -{ -"tb": 32, -"tbk": 2, -"tl": 266, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -1245, -1246, -554, -555, -556, -828, -829, -830, -831, -832, -833, -199, -200, -201, -202 -] -}, -{ -"tb": 288, -"tbk": 1, -"tl": 113, -"mb": 288, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 288, -"ebk": 1, -"fs": [ -1884, -1885, -1886, -1887, -1888, -1889, -1890, -1891, -1892, -1893, -1894, -1895, -1896, -1897, -1898, -1899, -1900, -1901, -1902, -26 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 14924, -"mb": 160, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1173, -1174, -1175, -1176, -1177, -1178, -762, -763, -764, -765, -766, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 0, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1263, -1264, -1265, -1266, -1267, -761, -762, -763, -764, -765, -766, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 2, -"tl": 14948, -"mb": 96, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1616, -1617, -1618, -1619, -762, -763, -764, -765, -766, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1903, -1904, -1905, -1906, -1907, -1908, -1909, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75573193, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1520, -1521, -1522, -1523, -1524, -1525, -1526, -1527, -1528, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 31, -"tbk": 1, -"tl": 77515119, -"mb": 31, -"mbk": 1, -"gb": 31, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1910, -1911, -1912, -1913, -1914, -1915, -1916, -1917, -1918, -1919, -1920, -1921, -1922, -1923, -1924, -1925, -1926, -1927, -1928, -1929, -1930, -1931, -1932, -1933, -1934, -1935, -26 -] -}, -{ -"tb": 300, -"tbk": 1, -"tl": 27, -"mb": 300, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -57, -58, -59, -60, -61, -62, -63, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23 -] -}, -{ -"tb": 16, -"tbk": 2, -"tl": 1156, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -1766, -546, -547, -548, -556, -198, -576, -577, -578, -579, -580, -581, -834, -835, -836, -837, -838, -554, -555 -] -}, -{ -"tb": 176, -"tbk": 1, -"tl": 75575618, -"mb": 176, -"mbk": 1, -"gb": 176, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1936, -1937, -1938, -1939, -1940, -1941, -1942, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 30894, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1943, -1944, -1945, -1946, -1947, -1948, -1949, -1950, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 2409, -"mb": 72, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -699, -700, -701, -702, -1951, -561, -562, -563, -564, -565, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 176, -"tbk": 1, -"tl": 141, -"mb": 176, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -767, -768, -769, -770, -771, -772, -773, -130, -131, -132, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 1448, -"tbk": 1, -"tl": 75576561, -"mb": 1448, -"mbk": 1, -"gb": 1448, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1268, -1269, -1270, -1271, -1272, -1273, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 19, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -359, -360, -361, -362, -363, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 75570362, -"mb": 160, -"mbk": 1, -"gb": 160, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -750, -751, -752, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -941, -391 -] -}, -{ -"tb": 192, -"tbk": 6, -"tl": 445, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -541, -542, -543, -544, -545, -546, -547, -548, -556, -198, -576, -577, -578, -579, -580, -581, -1568, -1569, -1570, -1571, -1572 -] -}, -{ -"tb": 96, -"tbk": 2, -"tl": 401, -"mb": 96, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1952, -1953, -1954, -1955, -1437, -1438, -1439, -1440, -1441, -1442, -1443, -1444, -1445, -1446, -1447, -1448, -1449, -1450, -1451, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 256, -"tbk": 2, -"tl": 4942, -"mb": 256, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1236, -1237, -1238, -1239, -1240, -1241, -1242, -1243, -1244, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 424, -"tbk": 1, -"tl": 75571223, -"mb": 424, -"mbk": 1, -"gb": 424, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -938, -939, -940, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -390, -391 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 1481, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -932, -933, -934, -935, -1541, -937, -762, -763, -764, -765, -766, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 28, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1610, -1611, -1612, -1613, -1614, -1615, -61, -62, -63, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 16000, -"tbk": 1, -"tl": 1785, -"mb": 16000, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1956, -1957, -1958, -1959, -1960, -1961, -1962, -1963, -1964, -1965, -1966, -191, -839, -840, -841, -842, -843, -844, -776, -777, -778, -839, -840, -841, -842, -843, -844, -199, -200, -201, -202, -128, -129, -61, -62, -63, -13, -14, -15 -] -}, -{ -"tb": 576, -"tbk": 2, -"tl": 2045, -"mb": 384, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -1561, -1562, -1563, -937, -762, -763, -764, -765, -766, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 75570108, -"mb": 72, -"mbk": 1, -"gb": 72, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -441, -442, -443, -444, -445, -446, -447, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -753, -391 -] -}, -{ -"tb": 133584, -"tbk": 11, -"tl": 75600619, -"mb": 49152, -"mbk": 1, -"gb": 35376, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1179, -1180, -1181, -1182, -1183, -1184, -1185, -1186, -61, -62, -63, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92 -] -}, -{ -"tb": 192, -"tbk": 4, -"tl": 11352, -"mb": 192, -"mbk": 4, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1616, -1617, -1618, -1619, -762, -763, -764, -765, -766, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 19, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -986, -987, -988, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 176, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -861, -862, -863, -864, -865, -866, -867, -868, -556, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 648, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -857, -858, -859, -860, -762, -763, -764, -765, -766, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 192, -"tbk": 2, -"tl": 532, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -678, -679, -680, -681, -682, -199, -200, -201, -202, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -64 -] -}, -{ -"tb": 2, -"tbk": 1, -"tl": 39, -"mb": 2, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -299, -300, -301, -302, -303, -304, -305, -306, -307, -308, -309, -310, -311, -312, -130, -131, -132, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -474, -475, -476, -477, -478, -479, -13, -14, -15, -16, -17, -18, -208, -209, -210 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 1429, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -1041, -1042, -1043, -1044, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 228, -"tbk": 1, -"tl": 75571579, -"mb": 228, -"mbk": 1, -"gb": 228, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -750, -751, -752, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -698, -391 -] -}, -{ -"tb": 48, -"tbk": 6, -"tl": 2079, -"mb": 48, -"mbk": 6, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -1766, -1595, -1596, -1597, -556, -576, -577, -578, -579, -580, -581, -198, -199, -200, -201, -202, -128, -129 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1049, -1050, -1051, -1052, -1053, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23 -] -}, -{ -"tb": 1008, -"tbk": 6, -"tl": 1036, -"mb": 512, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -824, -825, -826, -827, -191, -839, -840, -841, -842, -843, -844, -776, -777, -778, -839, -840, -841, -842, -843, -844, -199, -200, -201, -202 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 1814, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -861, -862, -863, -864, -865, -866, -867, -868, -556, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1110, -1111, -1112, -1113, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 224, -"tbk": 6, -"tl": 327, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -824, -825, -826, -827, -556, -828, -829, -830, -831, -832, -833, -1568, -1569, -1570, -1571, -1572, -554, -555, -839, -840, -841, -842, -843, -844 -] -}, -{ -"tb": 13500000, -"tbk": 200000, -"tl": 17700673, -"mb": 90, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -1967, -1968, -1969, -1970, -1971, -24, -25, -26 -] -}, -{ -"tb": 112, -"tbk": 3, -"tl": 25, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -1972, -1973, -1974, -1975, -1976, -1977, -1978, -1979, -1980, -1981, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 24, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1982, -1983, -1984, -1985, -1986, -1987, -1988, -1989, -1990, -1991 -] -}, -{ -"tb": 672, -"tbk": 3, -"tl": 37, -"mb": 384, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -326, -327, -328, -13, -14, -15, -16, -17, -18, -19 -] -}, -{ -"tb": 32, -"tbk": 2, -"tl": 1109, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -198, -576, -577, -578, -579, -580, -581, -834, -835, -836, -837, -838, -554, -555, -198 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 302, -"mb": 160, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1825, -1826, -1827, -1992, -1993, -1994, -1995, -1996, -1997, -1998, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 408, -"tbk": 3, -"tl": 75599622, -"mb": 192, -"mbk": 1, -"gb": 120, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1179, -1180, -1181, -1182, -1183, -1184, -1185, -1186, -61, -62, -63, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92 -] -}, -{ -"tb": 992, -"tbk": 5, -"tl": 28, -"mb": 512, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1999, -2000, -2001, -2002, -2003, -2004, -2005, -2006, -2007, -322, -323, -324, -325, -326, -327, -328, -13, -14, -15, -16, -17, -18, -208, -209, -210 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 2392, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2008, -2009, -2010, -561, -562, -563, -564, -565, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 75587374, -"mb": 80, -"mbk": 1, -"gb": 80, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -65, -66, -67, -68, -69, -70, -71, -72, -73, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 1, -"tbk": 1, -"tl": 28, -"mb": 1, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -977, -978, -979, -980, -981, -982, -983, -984, -985, -748, -749, -1171, -1172, -1114, -1115, -1116, -1117, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 128, -"tbk": 2, -"tl": 258, -"mb": 128, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 535, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -332, -333, -334, -335, -336, -199, -200, -201, -202, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -208, -209, -210 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 63, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -289, -290, -291, -292, -293, -294, -295, -296, -297, -130, -131, -132, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 228, -"tbk": 1, -"tl": 74, -"mb": 228, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -1103, -1104, -1105, -1106, -1107, -1108, -1109, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 75583549, -"mb": 80, -"mbk": 1, -"gb": 80, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1588, -1589, -1590, -1591, -1592, -1593, -1594, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 74, -"mb": 160, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -1103, -1104, -1105, -1106, -1107, -1108, -1109, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1583, -1584, -1585, -1586, -1587, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 112, -"tbk": 3, -"tl": 23, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -1972, -1973, -1974, -1975, -1976, -1977, -1978, -1979, -1980, -1981, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 75599874, -"mb": 16, -"mbk": 1, -"gb": 16, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -528, -529, -530, -531, -532, -533, -534, -535, -536, -537, -130, -131, -132, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 311, -"mb": 160, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1825, -1826, -1827, -1992, -1993, -1994, -1995, -1996, -1997, -1998, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 7398940, -"tbk": 100000, -"tl": 132452657851, -"mb": 748894, -"mbk": 10000, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2011, -2012, -2013, -2014, -2015, -2016, -2017, -2018, -2019, -2020, -2021, -2022, -609, -610, -611, -612, -24, -25, -26 -] -}, -{ -"tb": 176, -"tbk": 1, -"tl": 75600088, -"mb": 176, -"mbk": 1, -"gb": 176, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1936, -1937, -1938, -1939, -1940, -1941, -1942, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 648, -"tbk": 3, -"tl": 10556, -"mb": 648, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1187, -1188, -1189, -1190, -1191, -1192, -1193, -1194, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 75577186, -"mb": 96, -"mbk": 1, -"gb": 96, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1218, -1219, -1220, -1221, -1222, -1223, -1224, -130, -131, -132, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 18, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -359, -360, -361, -362, -363, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 946, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23 -] -}, -{ -"tb": 28, -"tbk": 1, -"tl": 27, -"mb": 28, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -57, -58, -59, -60, -130, -131, -132, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92 -] -}, -{ -"tb": 41728, -"tbk": 8, -"tl": 75581651, -"mb": 16384, -"mbk": 1, -"gb": 9216, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -733, -734, -735, -736, -737, -738, -739, -740, -741, -742, -743, -744, -745, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75580541, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1520, -1521, -1522, -1523, -1524, -1525, -1526, -1527, -1528, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 4, -"tbk": 1, -"tl": 75594371, -"mb": 4, -"mbk": 1, -"gb": 4, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1030, -1031, -1032, -1033, -1034, -1035, -1036, -1037, -1038, -1039, -1040, -130, -131, -132, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 2, -"tl": 15854, -"mb": 32, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1943, -1944, -1945, -1946, -1947, -1948, -1949, -1950, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -596, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -941 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 75589469, -"mb": 96, -"mbk": 1, -"gb": 96, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1218, -1219, -1220, -1221, -1222, -1223, -1224, -130, -131, -132, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 66, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1290, -1291, -1292, -1293, -1294, -176, -177, -178, -179, -180, -181, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 960, -"tbk": 30, -"tl": 4732, -"mb": 192, -"mbk": 6, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -541, -542, -543, -544, -545, -1595, -1596, -1597, -556, -198, -576, -577, -578, -579, -580, -581, -1568, -1569, -1570, -1571, -1572 -] -}, -{ -"tb": 80, -"tbk": 2, -"tl": 2470, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2023, -2024, -2025, -705, -706, -707, -708, -709, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 2000, -"tbk": 1, -"tl": 75591592, -"mb": 2000, -"mbk": 1, -"gb": 2000, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1259, -1260, -1261, -1262, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 2296, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2026, -2027, -2028, -2029, -2030, -2031, -2032, -2033, -2034, -2035, -2036, -2037, -2038, -2039, -1466, -138, -139, -140, -141, -142, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 973, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1386, -1387, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 2452, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2008, -2009, -2010, -561, -562, -563, -564, -565, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 84, -"tbk": 2, -"tl": 151148088, -"mb": 84, -"mbk": 2, -"gb": 84, -"gbk": 2, -"eb": 0, -"ebk": 0, -"fs": [ -869, -870, -871, -872, -873, -874, -875, -876, -877, -878, -61, -62, -63, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 27, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -289, -290, -291, -292, -293, -294, -295, -296, -297, -61, -62, -63, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 3584, -"tbk": 3, -"tl": 72902814, -"mb": 2048, -"mbk": 1, -"gb": 2048, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -683, -684, -685, -686, -687, -688, -689, -690, -448, -449, -450, -451, -452, -453, -454, -455, -456, -457, -458, -459, -460, -461, -462, -463, -464, -465, -223 -] -}, -{ -"tb": 1, -"tbk": 1, -"tl": 65, -"mb": 1, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2040, -2041, -2042, -2043, -2044, -2045, -2046, -2047, -2048, -1424, -1425, -1426, -1427, -1428, -1429, -1430, -1431, -1432, -1433, -1434, -1435, -1436, -1437, -1438, -1439, -1440, -1441, -1442, -1443, -1444, -1445, -1446, -1447, -1448, -1449, -1450, -1451, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 47616, -"tbk": 7, -"tl": 75576974, -"mb": 16384, -"mbk": 1, -"gb": 15360, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -733, -734, -735, -736, -737, -738, -739, -740, -741, -742, -743, -744, -745, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 16, -"tbk": 7, -"tl": 19666, -"mb": 16, -"mbk": 7, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1339, -1340, -1341, -1342, -1343, -1344, -1345, -1346, -1347, -937, -762, -763, -764, -765, -766, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 75572255, -"mb": 16, -"mbk": 1, -"gb": 16, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -998, -999, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 1798, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -75, -76, -77, -78, -79, -80, -81, -82, -83, -84, -85, -86, -87, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 400, -"tbk": 1, -"tl": 75585079, -"mb": 400, -"mbk": 1, -"gb": 400, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -879, -880, -881, -882, -883, -884, -61, -62, -63, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 2000, -"tbk": 1, -"tl": 75576582, -"mb": 2000, -"mbk": 1, -"gb": 2000, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1259, -1260, -1261, -1262, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 384, -"tbk": 2, -"tl": 122, -"mb": 256, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -93, -94, -95, -96, -97, -98, -99, -100, -101, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -143, -144 -] -}, -{ -"tb": 2400, -"tbk": 4, -"tl": 0, -"mb": 1280, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2049, -2050, -2051, -2052, -2053, -2054, -2055, -2056, -2057, -2058, -2059, -914, -915, -916, -917, -918, -919, -920, -921, -922, -923, -924, -925, -926, -927, -928, -929, -930, -931, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 206, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2060, -2061, -2062, -1750, -716, -717, -718, -719, -720, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 2032, -"tbk": 1, -"tl": 75600445, -"mb": 2032, -"mbk": 1, -"gb": 2032, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -2063, -2064, -2065, -2066, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 3996340, -"tbk": 400060, -"tl": 1062992666531, -"mb": 197829, -"mbk": 20004, -"gb": 197817, -"gbk": 20003, -"eb": 0, -"ebk": 0, -"fs": [ -2067, -2068, -2069, -2070, -2071, -2072, -2073, -2074, -2075, -2076, -2077, -2078, -2079, -2080, -1514, -2081, -2082, -2083, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 28, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -174, -175, -176, -177, -178, -179, -180, -181, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 18, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -359, -360, -361, -362, -363, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23 -] -}, -{ -"tb": 320, -"tbk": 4, -"tl": 0, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -105, -106, -107, -108, -109, -110, -111, -112, -113, -114, -115, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -474, -475, -476, -477, -478, -479, -13, -14, -15, -16, -17, -18, -64 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 9247, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -88, -89 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 1356, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1386, -1387, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23 -] -}, -{ -"tb": 96, -"tbk": 6, -"tl": 525, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1061, -1062, -1063, -1064, -556, -198, -576, -577, -578, -579, -580, -581, -1568, -1569, -1570, -1571, -1572, -554, -555, -198, -576, -577, -578, -579, -580, -581, -198 -] -}, -{ -"tb": 96, -"tbk": 6, -"tl": 25, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1000, -1001, -1002, -1003, -1004, -556, -828, -829, -830, -831, -832, -833, -1568, -1569, -1570, -1571, -1572, -554, -555, -839, -840, -841, -842, -843, -844, -199, -200, -201, -202, -128, -129 -] -}, -{ -"tb": 384, -"tbk": 2, -"tl": 82, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -1757, -1758, -1759, -762, -763, -764, -765, -766, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1049, -1050, -1051, -1052, -1053, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23 -] -}, -{ -"tb": 1398110, -"tbk": 1398110, -"tl": 66969, -"mb": 1, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1681, -1682, -1683, -1684, -1685, -1686, -1687, -1688, -1689, -1690, -1691, -1692, -1693, -1694, -2084, -2085, -2086, -2087, -2088, -2089, -2090, -2091, -2092, -2093, -2094, -2095, -2092, -2096, -2097, -1708, -223, -224, -225, -226, -227, -24, -25, -26 -] -}, -{ -"tb": 480, -"tbk": 2, -"tl": 9, -"mb": 320, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1825, -1826, -1827, -1828, -1829, -1830, -1831, -1832, -1833, -1834, -1835, -1836, -1837, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 2, -"tl": 2738, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -541, -542, -543, -544, -545, -546, -547, -548, -191, -192, -193, -194, -195, -196, -197, -198, -198 -] -}, -{ -"tb": 1448, -"tbk": 1, -"tl": 75588750, -"mb": 1448, -"mbk": 1, -"gb": 1448, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1268, -1269, -1270, -1271, -1272, -1273, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 4, -"tbk": 1, -"tl": 75581387, -"mb": 4, -"mbk": 1, -"gb": 4, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1030, -1031, -1032, -1033, -1034, -1035, -1036, -1037, -1038, -1039, -1040, -61, -62, -63, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 190, -"tbk": 10, -"tl": 775109103, -"mb": 190, -"mbk": 10, -"gb": 190, -"gbk": 10, -"eb": 0, -"ebk": 0, -"fs": [ -47, -2098, -2099, -2100, -2101, -2102, -2103, -2104, -2105, -2106, -2107, -2108, -2109, -2110, -2111, -2112, -2113, -2114, -2115, -2110, -2116, -2117, -2118, -2119, -2120, -2121, -2122, -2123, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 5896, -"tbk": 1, -"tl": 28, -"mb": 5896, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -57, -58, -59, -60, -61, -62, -63, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 1662, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1943, -1944, -1945, -1240, -1241, -1242, -1243, -1244, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 2, -"tl": 4958, -"mb": 32, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1943, -1944, -1945, -1240, -1241, -1242, -1243, -1244, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -596, -448, -449, -450, -451, -452, -453, -454, -455, -456, -457, -458, -459, -460, -461, -462, -463, -464, -465 -] -}, -{ -"tb": 2976, -"tbk": 5, -"tl": 28, -"mb": 1536, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -326, -327, -328, -13, -14, -15, -16, -17, -18, -208, -209, -210 -] -}, -{ -"tb": 11, -"tbk": 1, -"tl": 159, -"mb": 11, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -392, -393, -394, -395, -396, -397, -398, -399, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 76, -"tbk": 1, -"tl": 20, -"mb": 76, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -57, -58, -59, -60, -130, -131, -132, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23 -] -}, -{ -"tb": 44, -"tbk": 1, -"tl": 38, -"mb": 44, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -960, -961, -962, -963, -964, -965, -966, -967, -130, -131, -132, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 75570343, -"mb": 72, -"mbk": 1, -"gb": 72, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -441, -442, -443, -444, -445, -446, -447, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -941, -391 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75570089, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -596, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -753, -391, -609, -610, -611, -612 -] -}, -{ -"tb": 12, -"tbk": 1, -"tl": 77515160, -"mb": 12, -"mbk": 1, -"gb": 12, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -2124, -2125, -2126, -2127, -2128, -2129, -2130, -2131, -2132, -2133, -2134, -2135, -2136, -2137, -2138, -2139, -2140, -2141, -2142, -2143, -2144, -2145, -2146, -2147, -2148, -2149, -26 -] -}, -{ -"tb": 1024, -"tbk": 1, -"tl": 77516524, -"mb": 1024, -"mbk": 1, -"gb": 1024, -"gbk": 1, -"eb": 1024, -"ebk": 1, -"fs": [ -2150, -2151, -2152, -2153, -2154, -2155, -2156, -2157, -2158, -2159, -2160, -2161, -2162, -901, -2163, -2164, -2165, -2166, -2167, -2168, -2169, -2170, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 77516517, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 64, -"ebk": 1, -"fs": [ -2171, -2172, -2173, -2174, -2175, -2176, -2177, -2178, -2179, -2180, -2181, -2182, -2183, -2184, -2170, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 937, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -332, -333, -334, -335, -336, -199, -200, -201, -202, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -19 -] -}, -{ -"tb": 1344, -"tbk": 3, -"tl": 383, -"mb": 768, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -946, -947, -948, -1760, -1761, -1762, -1763, -1764, -1765, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -474, -475, -1482, -1483, -1484, -1485, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 4, -"tl": 541, -"mb": 32, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2060, -2061, -2062, -1750, -716, -717, -718, -719, -720, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 75580534, -"mb": 80, -"mbk": 1, -"gb": 80, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1588, -1589, -1590, -1591, -1592, -1593, -1594, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 1979, -"tbk": 1, -"tl": 1876721, -"mb": 1979, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -2185, -2186, -2187, -2188, -2189, -2190, -2191, -2192, -2193, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 2762, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -2194, -2195, -2196, -2197, -2198, -2199, -2200, -2201, -2202, -172, -173, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 384, -"tbk": 2, -"tl": 146, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -1757, -1758, -1759, -762, -763, -764, -765, -766, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 3, -"tbk": 1, -"tl": 467, -"mb": 3, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -228, -229, -230, -231, -232, -233, -234, -235, -236, -237, -238, -239, -240, -241, -242, -243, -244, -1838, -1839, -1840, -1841, -1842, -1843, -250, -251, -252, -253, -254, -26 -] -}, -{ -"tb": 164, -"tbk": 1, -"tl": 2, -"mb": 164, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2203, -2204, -2205, -2206, -2207, -2208, -2209, -2210, -2211, -2212, -1307, -1308, -1309, -1310, -1311, -1312, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 3, -"tbk": 3, -"tl": 81, -"mb": 1, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -977, -978, -979, -980, -981, -982, -983, -984, -985, -748, -749, -746, -747, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 64, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -289, -290, -291, -292, -293, -294, -295, -296, -297, -130, -131, -132, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 152, -"tbk": 1, -"tl": 98, -"mb": 152, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -767, -768, -769, -770, -771, -772, -773, -61, -62, -63, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 1512, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -1794, -1795, -1796, -1797, -1798, -1799, -1800, -1801, -1802, -1803, -1804, -1805, -1806, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 72902998, -"mb": 48, -"mbk": 1, -"gb": 48, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -2213, -2214, -2215, -2216, -2217, -2218, -2219, -2220, -2221, -2222, -457, -458, -459, -460, -461, -462, -463, -464, -465, -223, -224, -225, -226, -227, -24, -25, -26 -] -}, -{ -"tb": 200, -"tbk": 1, -"tl": 82, -"mb": 200, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -428, -429, -430, -431, -432, -433, -434, -435, -436, -437, -438, -439, -440, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 64, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -289, -290, -291, -292, -293, -294, -295, -296, -297, -130, -131, -132, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 38, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -203, -204, -205, -206, -207, -110, -111, -112, -113, -114, -115, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 144, -"tbk": 1, -"tl": 19, -"mb": 144, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -57, -58, -59, -60, -130, -131, -132, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23 -] -}, -{ -"tb": 178247040, -"tbk": 140, -"tl": 523832, -"mb": 8912896, -"mbk": 1, -"gb": 8912896, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -1203, -2223, -2224, -2225, -2226, -2227, -2228, -1215, -1216, -1217, -225, -226, -227, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 57, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -1606, -1607, -1608, -1609, -61, -62, -63, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 2, -"tbk": 1, -"tl": 37, -"mb": 2, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -299, -300, -301, -302, -303, -304, -305, -306, -307, -308, -309, -310, -311, -312, -61, -62, -63, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 651, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1386, -1387, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23 -] -}, -{ -"tb": 1152, -"tbk": 1, -"tl": 202, -"mb": 1152, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -416, -417, -418, -419, -420, -421, -422, -423, -424, -425, -426, -427, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 624, -"tbk": 3, -"tl": 58, -"mb": 384, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2229, -2230, -110, -111, -112, -113, -114, -115, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 2470, -"mb": 72, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -699, -700, -701, -702, -1951, -561, -562, -563, -564, -565, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 948, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -2231, -2232, -2233, -2234, -839, -840, -841, -842, -843, -844, -199, -200, -201, -202, -128, -129, -61, -62, -63, -13, -14, -15 -] -}, -{ -"tb": 616, -"tbk": 22, -"tl": 81028, -"mb": 616, -"mbk": 22, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -1766, -1595, -1596, -1597, -191, -192, -193, -194, -195, -196, -197, -198, -198, -199, -200, -201, -202 -] -}, -{ -"tb": 40, -"tbk": 1, -"tl": 75581157, -"mb": 40, -"mbk": 1, -"gb": 40, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1118, -1119, -1120, -1121, -1122, -1123, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 128, -"tbk": 2, -"tl": 15831, -"mb": 128, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -2235, -2236, -2237, -2238, -2239, -2240, -2241, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 48, -"tbk": 3, -"tl": 10426, -"mb": 48, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1565, -1566, -1567, -561, -562, -563, -564, -565, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 30804, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -2242, -2243, -2244, -561, -562, -563, -564, -565, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 9, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -582, -583, -584, -585, -586, -61, -62, -63, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 14, -"tbk": 4, -"tl": 8013, -"mb": 14, -"mbk": 4, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1339, -1340, -1341, -1342, -1343, -1344, -1345, -1346, -1347, -937, -762, -763, -764, -765, -766, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 630, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -1041, -1042, -1043, -1044, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 24, -"tbk": 2, -"tl": 5993, -"mb": 24, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -1766, -546, -547, -548, -191, -198, -192, -193, -194, -195, -196, -197, -198, -199, -200, -201, -202 -] -}, -{ -"tb": 224, -"tbk": 3, -"tl": 0, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1999, -2000, -2001, -2002, -2003, -2004, -2005, -2006, -2007, -322, -323, -324, -325, -326, -327, -328, -13, -14, -15, -16, -17, -18, -74 -] -}, -{ -"tb": 560, -"tbk": 7, -"tl": 0, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -105, -106, -107, -108, -109, -110, -111, -112, -113, -114, -115, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 2286, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -133, -134, -135, -136, -2245, -138, -139, -140, -141, -142, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 30, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1731, -1732, -1733, -1734, -1735, -1736, -1737, -1738, -1739, -1740, -1741, -1742, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 213, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1370, -1371, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 1947, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -75, -76, -77, -78, -79, -80, -81, -82, -83, -84, -85, -86, -87, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -474, -475, -1482, -1483, -1484, -1485, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 1950, -"tbk": 20, -"tl": 57223977, -"mb": 130, -"mbk": 1, -"gb": 130, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -2246, -2247, -2248, -2249, -24, -25, -26 -] -}, -{ -"tb": 68804400, -"tbk": 130, -"tl": 53058424, -"mb": 3440640, -"mbk": 1, -"gb": 3440640, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -1313, -1314, -2250, -2251, -2252, -2253, -2254, -2255, -2256, -2257, -2258, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75570389, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -1357, -1358, -1359, -1360, -1361, -1362, -1363, -1364, -1365, -1366, -1367, -1368, -1369, -457, -458, -604, -605, -606, -607, -608, -941, -391, -609, -610, -611, -612, -24, -25 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 0, -"mb": 160, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2203, -2204, -2205, -2206, -2207, -2208, -2209, -2210, -2211, -2212, -1307, -1308, -1309, -1310, -1311, -1312, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 76, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -1757, -1758, -1759, -762, -763, -764, -765, -766, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 108, -"tbk": 1, -"tl": 75570521, -"mb": 108, -"mbk": 1, -"gb": 108, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1088, -1089, -1090, -1091, -1092, -1093, -1094, -1095, -1096, -1097, -1098, -1099, -1100, -1101, -1102, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -942, -391 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -474, -475, -1482, -1483, -1484, -1485, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 1008, -"tbk": 6, -"tl": 65, -"mb": 512, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -1972, -1973, -1974, -1975, -1976, -1977, -1978, -1979, -1980, -1981, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 616, -"tbk": 22, -"tl": 33267, -"mb": 616, -"mbk": 22, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -1766, -1595, -1596, -1597, -191, -576, -577, -578, -579, -580, -581, -198, -776, -777, -778, -576, -577, -578, -579, -580, -581 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 83, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1731, -1732, -1733, -1734, -1735, -1736, -1737, -1738, -1739, -1740, -1741, -1742, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 240, -"tbk": 3, -"tl": 8865, -"mb": 240, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -779, -780, -781, -782, -783, -784, -762, -763, -764, -765, -766, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 3565, -"mb": 72, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -699, -700, -701, -702, -2259, -2260, -705, -706, -707, -708, -709, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 2198230, -"tbk": 200030, -"tl": 10850263, -"mb": 13, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2261, -2262, -2263, -2264, -2265, -2266, -2267, -2268, -2269, -2270, -1708, -223, -224, -225, -226, -227, -24, -25, -26 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 47, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1290, -1291, -1292, -1293, -1294, -176, -177, -178, -179, -180, -181, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 240, -"tbk": 2, -"tl": 75574528, -"mb": 192, -"mbk": 1, -"gb": 48, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -851, -852, -853, -854, -855, -856, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23 -] -}, -{ -"tb": 3, -"tbk": 1, -"tl": 826, -"mb": 3, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -228, -229, -230, -231, -232, -233, -234, -235, -236, -237, -238, -239, -240, -241, -242, -243, -244, -1065, -1066, -1067, -1068, -1069, -1070, -1071, -1072, -1844, -1845, -1846, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 37, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1167, -1168, -1169, -1170, -11, -12, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 2352, -"tbk": 42, -"tl": 76413, -"mb": 2352, -"mbk": 42, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1348, -1349, -1350, -1351, -1352, -1353, -1354, -1355, -1356, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 128, -"tbk": 1, -"tl": 147, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -2271, -2272, -2273, -2274, -2275, -2276, -2277, -2278, -2279, -2280, -2281, -2282, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -64 -] -}, -{ -"tb": 3584, -"tbk": 3, -"tl": 72902715, -"mb": 2048, -"mbk": 1, -"gb": 2048, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -683, -684, -685, -686, -687, -688, -689, -690, -448, -1399, -1400, -1401, -1402, -1403, -1404, -1405, -1406, -457, -458, -459, -460, -461, -462, -463, -464, -465, -223 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 16, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -2242, -2243, -2244, -561, -562, -563, -564, -565, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 2010, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1056, -1057, -1058, -1059, -1060, -761, -762, -763, -764, -765, -766, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 75590332, -"mb": 160, -"mbk": 1, -"gb": 160, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -645, -646, -647, -648, -649, -650, -651, -652, -650, -653, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 75570474, -"mb": 72, -"mbk": 1, -"gb": 72, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -441, -442, -443, -444, -445, -446, -447, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -942, -391 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 75571989, -"mb": 96, -"mbk": 1, -"gb": 96, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1218, -1219, -1220, -1221, -1222, -1223, -1224, -61, -62, -63, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 1792, -"tbk": 3, -"tl": 75571429, -"mb": 1024, -"mbk": 1, -"gb": 1024, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -683, -684, -685, -686, -687, -688, -689, -690, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -698, -391 -] -}, -{ -"tb": 768, -"tbk": 3, -"tl": 123, -"mb": 384, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -1757, -1758, -1759, -762, -763, -764, -765, -766, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 76, -"tbk": 1, -"tl": 69, -"mb": 76, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -1103, -1104, -1105, -1106, -1107, -1108, -1109, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 32640, -"tbk": 8, -"tl": 6469, -"mb": 16384, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -93, -94, -95, -96, -97, -98, -99, -100, -101, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -88, -89 -] -}, -{ -"tb": 96, -"tbk": 3, -"tl": 108, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1167, -1168, -1169, -1170, -746, -747, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 208, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2283, -2284, -2285, -2286, -2287, -2288, -2289, -2290, -2291, -2292, -2293, -2294, -2295, -2296, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 120, -"tbk": 2, -"tl": 75612680, -"mb": 96, -"mbk": 1, -"gb": 24, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -613, -614, -615, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92 -] -}, -{ -"tb": 34, -"tbk": 1, -"tl": 360, -"mb": 34, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -392, -393, -394, -395, -396, -397, -398, -399, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 8064, -"tbk": 6, -"tl": 9, -"mb": 4096, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -791, -792, -793, -794, -795, -796, -797, -351, -352, -268, -269, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 27, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1610, -1611, -1612, -1613, -1614, -1615, -130, -131, -132, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 4756, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -678, -679, -680, -681, -682, -199, -200, -201, -202, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -526, -527 -] -}, -{ -"tb": 1352, -"tbk": 1, -"tl": 20, -"mb": 1352, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -57, -58, -59, -60, -130, -131, -132, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -474, -475, -1482, -1483, -1484, -1485, -13, -14, -15, -16, -17, -18, -526, -527 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75583557, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1520, -1521, -1522, -1523, -1524, -1525, -1526, -1527, -1528, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 120, -"tbk": 1, -"tl": 0, -"mb": 120, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2203, -2204, -2205, -2206, -2207, -2208, -2209, -2210, -2211, -2212, -1307, -1308, -1309, -1310, -1311, -1312, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 115, -"tbk": 1, -"tl": 37, -"mb": 115, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -960, -961, -962, -963, -964, -965, -966, -967, -61, -62, -63, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 1152, -"tbk": 1, -"tl": 61, -"mb": 1152, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -416, -417, -418, -419, -420, -421, -422, -423, -424, -425, -426, -427, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 78, -"tbk": 9, -"tl": 2554, -"mb": 78, -"mbk": 9, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -337, -338, -339, -340, -341, -342, -343, -344, -345, -346, -347, -348, -349, -350, -266, -267, -268, -269, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1583, -1584, -1585, -1586, -1587, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 1770, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -2194, -2195, -2196, -2197, -2198, -2199, -2200, -2201, -2202, -172, -173, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 326, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -74 -] -}, -{ -"tb": 120, -"tbk": 2, -"tl": 75572244, -"mb": 96, -"mbk": 1, -"gb": 24, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -613, -614, -615, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 0, -"mb": 160, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1825, -1826, -1827, -1828, -1829, -1830, -1831, -1832, -1833, -1834, -1835, -1836, -1837, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 2000, -"tbk": 1, -"tl": 75571840, -"mb": 2000, -"mbk": 1, -"gb": 2000, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1259, -1260, -1261, -1262, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 75579295, -"mb": 16, -"mbk": 1, -"gb": 16, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1197, -1198, -1199, -1200, -1201, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 800, -"tbk": 2, -"tl": 0, -"mb": 640, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -668, -669, -670, -671, -672, -673, -674, -176, -177, -178, -179, -180, -181, -16, -17, -18, -19, -20, -21, -22, -23 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 1334, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -1041, -1042, -1043, -1044, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 28, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -203, -204, -205, -206, -207, -110, -111, -112, -113, -114, -115, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 1969, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1056, -1057, -1058, -1059, -1060, -761, -762, -763, -764, -765, -766, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 131, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2297, -2298, -2299, -1750, -716, -717, -718, -719, -720, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 28, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1610, -1611, -1612, -1613, -1614, -1615, -61, -62, -63, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 2510, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -1041, -1042, -1043, -1044, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 1797, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -61, -62, -63, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 141, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2300, -2301, -2302, -2303, -1750, -716, -717, -718, -719, -720, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 3297, -"mb": 72, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1529, -1530, -1531, -1532, -1533, -561, -562, -563, -564, -565, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 12801920, -"tbk": 200030, -"tl": 9551, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2304, -2305, -2306, -2307, -2308, -2309, -2310, -2311, -2312, -2313, -2314, -2315, -1708, -223, -224, -225, -226, -227, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 75585694, -"mb": 96, -"mbk": 1, -"gb": 96, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1218, -1219, -1220, -1221, -1222, -1223, -1224, -130, -131, -132, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 2, -"tl": 170, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2060, -2061, -2062, -1750, -716, -717, -718, -719, -720, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 4, -"tbk": 1, -"tl": 75574564, -"mb": 4, -"mbk": 1, -"gb": 4, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1030, -1031, -1032, -1033, -1034, -1035, -1036, -1037, -1038, -1039, -1040, -130, -131, -132, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 6, -"tbk": 1, -"tl": 75583184, -"mb": 6, -"mbk": 1, -"gb": 6, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -654, -655, -656, -657, -658, -659, -660, -661, -662, -663, -664, -665, -666, -667, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 320, -"tbk": 4, -"tl": 201, -"mb": 160, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -932, -933, -934, -935, -1598, -1599, -762, -763, -764, -765, -766, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 10, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1295, -1296, -1297, -1298, -1299, -1300, -1301, -1302, -1303, -1304, -1305, -1306, -1307, -1308, -1309, -1310, -1311, -1312, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 264, -"tbk": 21, -"tl": 63, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1000, -1001, -1002, -1003, -1004, -556, -828, -829, -830, -831, -832, -833, -199, -200, -201, -202, -128, -129, -61, -62, -63, -13, -14, -15, -16, -17, -18 -] -}, -{ -"tb": 640, -"tbk": 1, -"tl": 0, -"mb": 640, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1637, -1638, -1639, -1640, -1641, -1642, -1643, -423, -424, -425, -426, -427, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 639, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -779, -780, -781, -782, -783, -784, -762, -763, -764, -765, -766, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1583, -1584, -1585, -1586, -1587, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23 -] -}, -{ -"tb": 144, -"tbk": 1, -"tl": 19, -"mb": 144, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -57, -58, -59, -60, -61, -62, -63, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23 -] -}, -{ -"tb": 32, -"tbk": 2, -"tl": 222, -"mb": 32, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2060, -2061, -2062, -1750, -716, -717, -718, -719, -720, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 212, -"tbk": 1, -"tl": 90, -"mb": 212, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -428, -429, -430, -431, -432, -433, -434, -435, -436, -437, -438, -439, -440, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 19, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1847, -1848, -1849, -1850, -1851, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23 -] -}, -{ -"tb": 2, -"tbk": 2, -"tl": 60596, -"mb": 2, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1339, -1340, -1341, -1342, -1343, -1344, -1345, -1346, -1347, -937, -762, -763, -764, -765, -766, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 552, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -208, -209, -210 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 4776, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 3565, -"mb": 72, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -699, -700, -701, -702, -2259, -2260, -705, -706, -707, -708, -709, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 1326, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23 -] -}, -{ -"tb": 896, -"tbk": 1, -"tl": 246, -"mb": 896, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -710, -711, -712, -713, -714, -715, -716, -717, -718, -719, -720, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 12801920, -"tbk": 200030, -"tl": 8181, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -211, -212, -213, -214, -215, -216, -217, -218, -219, -220, -2316, -1708, -223, -224, -225, -226, -227, -24, -25, -26 -] -}, -{ -"tb": 15387610, -"tbk": 600090, -"tl": 1958870, -"mb": 52, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -2185, -2317, -2318, -2319, -2320, -2321, -2322, -2323, -2324, -2325, -2326, -2327, -2328, -2329, -2330, -2331, -2332, -2333, -2334, -2335, -464, -465, -223, -224 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 36, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -2336, -2337, -2338, -2339, -2340, -2341, -2342, -2343, -2344, -2345, -2346, -2347, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 128, -"tbk": 2, -"tl": 9, -"mb": 128, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -2348, -2349, -2350, -2351, -2352, -2353, -2354, -322, -323, -324, -325, -326, -327, -328, -13, -14, -15, -16, -17, -18, -298 -] -}, -{ -"tb": 324, -"tbk": 4, -"tl": 158, -"mb": 108, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -1573, -1574, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 3921, -"mb": 160, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -932, -933, -934, -935, -936, -937, -762, -763, -764, -765, -766, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 2, -"tl": 61572, -"mb": 32, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1565, -1566, -1567, -561, -562, -563, -564, -565, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 0, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -2242, -2243, -2244, -561, -562, -563, -564, -565, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 1615, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1565, -1566, -1567, -561, -562, -563, -564, -565, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 1333, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -74 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 9, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -582, -583, -584, -585, -586, -61, -62, -63, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 77514265, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 64, -"ebk": 1, -"fs": [ -2355, -2356, -2357, -2358, -2359, -2360, -2361, -2362, -2363, -2364, -2365, -2366, -2367, -898, -899, -900, -901, -902, -903, -904, -905, -906, -907, -908, -909, -910, -911, -912, -913, -914, -915, -916, -917, -918, -919, -920, -921, -922, -923, -924, -925, -926, -927, -928, -929, -930, -931 -] -}, -{ -"tb": 212, -"tbk": 1, -"tl": 66, -"mb": 212, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -1103, -1104, -1105, -1106, -1107, -1108, -1109, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 1316, -"tbk": 1, -"tl": 19, -"mb": 1316, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2203, -2204, -2205, -2206, -2207, -2208, -2209, -2210, -2211, -2212, -1307, -1308, -1309, -1310, -1311, -1312, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 2046, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -932, -933, -934, -935, -936, -937, -762, -763, -764, -765, -766, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 10, -"tbk": 4, -"tl": 7851, -"mb": 10, -"mbk": 4, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1339, -1340, -1341, -1342, -1343, -1344, -1345, -1346, -1347, -937, -762, -763, -764, -765, -766, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 5, -"tl": 377852994, -"mb": 80, -"mbk": 5, -"gb": 80, -"gbk": 5, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -2368, -2369, -2370, -2371, -2372, -1285, -1286, -1287, -1288, -1289, -377, -378, -379, -380, -381, -382, -383, -384, -385, -386, -387, -388 -] -}, -{ -"tb": 10120, -"tbk": 314, -"tl": 3558039, -"mb": 10120, -"mbk": 314, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -1766, -1595, -1596, -1597, -191, -198, -192, -193, -194, -195, -196, -197, -198, -199, -200, -201, -202 -] -}, -{ -"tb": 130944, -"tbk": 10, -"tl": 2527, -"mb": 65536, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -93, -94, -95, -96, -97, -98, -99, -100, -101, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -88, -89 -] -}, -{ -"tb": 176, -"tbk": 1, -"tl": 75630543, -"mb": 176, -"mbk": 1, -"gb": 176, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1936, -1937, -1938, -1939, -1940, -1941, -1942, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 144, -"tbk": 1, -"tl": 2587, -"mb": 144, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -754, -755, -756, -757, -758, -759, -760, -761, -762, -763, -764, -765, -766, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 42, -"tbk": 2, -"tl": 2945, -"mb": 42, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1339, -1340, -1341, -1342, -1343, -1344, -1345, -1346, -1347, -937, -762, -763, -764, -765, -766, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 1132, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -575, -547, -548, -556, -198, -576, -577, -578, -579, -580, -581, -834, -835, -836, -837, -838, -554, -555, -198 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -596, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -942 -] -}, -{ -"tb": 400, -"tbk": 1, -"tl": 75572162, -"mb": 400, -"mbk": 1, -"gb": 400, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -879, -880, -881, -882, -883, -884, -130, -131, -132, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1903, -1904, -1905, -1906, -1907, -1908, -1909, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23 -] -}, -{ -"tb": 2, -"tbk": 1, -"tl": 39, -"mb": 2, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -299, -300, -301, -302, -303, -304, -305, -306, -307, -308, -309, -310, -311, -312, -130, -131, -132, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 568, -"tbk": 1, -"tl": 275, -"mb": 568, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2373, -2374, -2375, -2376, -2377, -2378, -2379, -2380, -2381, -2382, -2383, -2384, -1436, -1437, -1438, -1439, -1440, -1441, -1442, -1443, -1444, -1445, -1446, -1447, -1448, -1449, -1450, -1451, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 768, -"tbk": 4, -"tl": 10970, -"mb": 768, -"mbk": 4, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -1561, -1562, -1563, -937, -762, -763, -764, -765, -766, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 96, -"tbk": 2, -"tl": 57, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -1606, -1607, -1608, -1609, -130, -131, -132, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 1387, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1386, -1387, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 27, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1610, -1611, -1612, -1613, -1614, -1615, -130, -131, -132, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1110, -1111, -1112, -1113, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 666, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -2385, -2386, -2387, -2388, -2389, -1799, -1800, -1801, -1802, -1803, -1804, -1805, -1806, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75570620, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -2390, -2391, -2392, -2393, -2394, -2395, -2396, -2397, -2398, -457, -458, -604, -605, -606, -607, -608, -942, -391, -609, -610, -611, -612, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 75591584, -"mb": 16, -"mbk": 1, -"gb": 16, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1197, -1198, -1199, -1200, -1201, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 7920, -"tbk": 7, -"tl": 75588862, -"mb": 3072, -"mbk": 1, -"gb": 1872, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1179, -1180, -1181, -1182, -1183, -1184, -1185, -1186, -61, -62, -63, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 66, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -1606, -1607, -1608, -1609, -61, -62, -63, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 132, -"tbk": 4, -"tl": 302340563, -"mb": 132, -"mbk": 4, -"gb": 132, -"gbk": 4, -"eb": 0, -"ebk": 0, -"fs": [ -869, -870, -871, -872, -873, -874, -875, -876, -877, -878, -61, -62, -63, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 56, -"tbk": 1, -"tl": 2517, -"mb": 56, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -968, -969, -970, -971, -972, -973, -974, -975, -976, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 128, -"tbk": 1, -"tl": 138, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -989, -990, -991, -992, -993, -994, -995, -996, -997, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 192, -"tbk": 4, -"tl": 0, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1515, -1516, -1517, -1518, -1519, -176, -177, -178, -179, -180, -181, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 444, -"tbk": 1, -"tl": 128, -"mb": 444, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -767, -768, -769, -770, -771, -772, -773, -61, -62, -63, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 85504, -"tbk": 8, -"tl": 75585462, -"mb": 32768, -"mbk": 1, -"gb": 20480, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -733, -734, -735, -736, -737, -738, -739, -740, -741, -742, -743, -744, -745, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 64, -"tbk": 4, -"tl": 540, -"mb": 32, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2060, -2061, -2062, -1750, -716, -717, -718, -719, -720, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 512, -"tbk": 1, -"tl": 75576567, -"mb": 512, -"mbk": 1, -"gb": 512, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1225, -1226, -1227, -1228, -1229, -1230, -1231, -1232, -1233, -1234, -1235, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 480, -"tbk": 15, -"tl": 2177, -"mb": 192, -"mbk": 6, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -541, -542, -543, -544, -545, -1595, -1596, -1597, -556, -576, -577, -578, -579, -580, -581, -198, -199, -200, -201, -202 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 75570530, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1542, -1543, -1544, -1545, -1546, -1547, -1548, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -942, -391 -] -}, -{ -"tb": 316, -"tbk": 1, -"tl": 75570270, -"mb": 316, -"mbk": 1, -"gb": 316, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -750, -751, -752, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -941, -391 -] -}, -{ -"tb": 3968, -"tbk": 5, -"tl": 754, -"mb": 2048, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -93, -94, -95, -96, -97, -98, -99, -100, -101, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -74 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 25, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1731, -1732, -1733, -1734, -1735, -1736, -1737, -1738, -1739, -1740, -1741, -1742, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 229, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1952, -1953, -1954, -1955, -1424, -1425, -1426, -1427, -1428, -1429, -1430, -1431, -1432, -1433, -1434, -1435, -1436, -1437, -1438, -1439, -1440, -1441, -1442, -1443, -1444, -1445, -1446, -1447, -1448, -1449, -1450, -1451, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 28, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 1550, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -779, -780, -781, -782, -783, -784, -762, -763, -764, -765, -766, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 2176, -"tbk": 34, -"tl": 4977, -"mb": 2176, -"mbk": 34, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -2348, -2349, -2350, -2351, -2352, -2353, -2354, -322, -323, -324, -325, -326, -327, -328, -13, -14, -15, -16, -17, -18, -208, -209, -210 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 18, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -986, -987, -988, -748, -749, -1171, -1172, -1114, -1115, -1116, -1117, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 20275, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -678, -679, -680, -681, -682, -199, -200, -201, -202, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -88, -89 -] -}, -{ -"tb": 50, -"tbk": 10, -"tl": 1059306, -"mb": 5, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2399, -2400, -2401, -2402, -2403, -2404, -2405, -2406, -2407, -2408, -2409, -2410, -1577, -1578, -1579, -1580, -1581, -1582, -2411, -2412, -504, -505, -506, -507, -508, -509, -510, -511, -512, -513, -514, -515, -516, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 2019, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1173, -1174, -1175, -1176, -1177, -1178, -762, -763, -764, -765, -766, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 304, -"tbk": 2, -"tl": 10, -"mb": 288, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -582, -583, -584, -585, -586, -61, -62, -63, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 400, -"tbk": 1, -"tl": 75592039, -"mb": 400, -"mbk": 1, -"gb": 400, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -879, -880, -881, -882, -883, -884, -61, -62, -63, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 544, -"tbk": 3, -"tl": 56, -"mb": 352, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -174, -175, -176, -177, -178, -179, -180, -181, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 75592131, -"mb": 96, -"mbk": 1, -"gb": 96, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1218, -1219, -1220, -1221, -1222, -1223, -1224, -61, -62, -63, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 1120, -"tbk": 3, -"tl": 10, -"mb": 640, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2413, -2414, -2415, -2416, -2417, -2418, -2419, -2420, -2421, -2422, -2423, -914, -915, -916, -917, -918, -919, -920, -921, -922, -923, -924, -925, -926, -927, -928, -929, -930, -931, -26 -] -}, -{ -"tb": 162, -"tbk": 2, -"tl": 21, -"mb": 108, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -2424, -2425, -1421, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 0, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -2426, -2427, -2428, -937, -762, -763, -764, -765, -766, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 176, -"tbk": 1, -"tl": 75578316, -"mb": 176, -"mbk": 1, -"gb": 176, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1936, -1937, -1938, -1939, -1940, -1941, -1942, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 927, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -678, -679, -680, -681, -682, -199, -200, -201, -202, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -19 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 0, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1515, -1516, -1517, -1518, -1519, -176, -177, -178, -179, -180, -181, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 1005, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1386, -1387, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1110, -1111, -1112, -1113, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75570611, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -1357, -1358, -1359, -1360, -1361, -1362, -1363, -1364, -1365, -1366, -1367, -1368, -1369, -457, -458, -604, -605, -606, -607, -608, -942, -391, -609, -610, -611, -612, -24, -25 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 1727, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1943, -1944, -1945, -1240, -1241, -1242, -1243, -1244, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75570961, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1274, -1275, -1276, -1277, -1278, -1279, -1280, -1281, -1282, -1283, -1284, -2429, -2430, -2431, -2432, -2433, -2434, -2435, -379, -380, -381, -382, -383, -384, -385, -386, -387, -388, -389, -390, -391 -] -}, -{ -"tb": 122, -"tbk": 2, -"tl": 80, -"mb": 61, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2436, -2437, -2438, -2439, -2440, -2441, -2442, -2443, -2444, -2445, -2446, -2447, -2448, -2449, -2450, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576 -] -}, -{ -"tb": 5840, -"tbk": 3, -"tl": 411, -"mb": 3520, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -2451, -2452, -2453, -2454, -2455, -2456, -2457, -2458, -2459, -2460, -2461, -2462, -2463, -2464, -921, -922, -923, -924, -925, -926, -927, -928, -929, -930, -931, -26 -] -}, -{ -"tb": 320000, -"tbk": 1, -"tl": 4750, -"mb": 320000, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2465, -2466, -2467, -2468, -2469, -2470, -2471, -2472, -2473, -2474, -189, -190, -191, -192, -193, -194, -195, -196, -197, -198, -198, -199, -200, -201, -202, -128, -129 -] -}, -{ -"tb": 48, -"tbk": 6, -"tl": 16797, -"mb": 48, -"mbk": 6, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -1766, -1595, -1596, -1597, -556, -198, -576, -577, -578, -579, -580, -581, -198, -199, -200, -201, -202 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 317, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -61, -62, -63, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23 -] -}, -{ -"tb": 24, -"tbk": 2, -"tl": 75576974, -"mb": 16, -"mbk": 1, -"gb": 8, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -517, -518, -519, -520, -521, -522, -523, -524, -525, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 2, -"tl": 0, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1515, -1516, -1517, -1518, -1519, -176, -177, -178, -179, -180, -181, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 4, -"tbk": 1, -"tl": 75577232, -"mb": 4, -"mbk": 1, -"gb": 4, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1030, -1031, -1032, -1033, -1034, -1035, -1036, -1037, -1038, -1039, -1040, -130, -131, -132, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 402, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -2336, -2337, -2338, -2339, -2340, -2341, -2342, -2343, -2344, -2345, -2346, -2347, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -474, -475, -476, -477, -478, -479, -13, -14, -15, -16, -17, -18, -143, -144 -] -}, -{ -"tb": 144, -"tbk": 3, -"tl": 0, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1515, -1516, -1517, -1518, -1519, -176, -177, -178, -179, -180, -181, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 144, -"tbk": 1, -"tl": 1, -"mb": 144, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2203, -2204, -2205, -2206, -2207, -2208, -2209, -2210, -2211, -2212, -1307, -1308, -1309, -1310, -1311, -1312, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -474, -475, -1482, -1483, -1484, -1485, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 2416, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -75, -76, -77, -78, -79, -80, -81, -82, -83, -84, -85, -86, -87, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 400, -"tbk": 1, -"tl": 75571914, -"mb": 400, -"mbk": 1, -"gb": 400, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -879, -880, -881, -882, -883, -884, -61, -62, -63, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 176, -"tbk": 1, -"tl": 75587350, -"mb": 176, -"mbk": 1, -"gb": 176, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1936, -1937, -1938, -1939, -1940, -1941, -1942, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 56, -"tbk": 2, -"tl": 75570962, -"mb": 40, -"mbk": 1, -"gb": 40, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -2368, -2369, -2370, -2371, -2372, -2429, -2430, -2431, -2432, -2433, -2434, -2435, -379, -380, -381, -382, -383, -384, -385, -386, -387, -388 -] -}, -{ -"tb": 144, -"tbk": 1, -"tl": 75570127, -"mb": 144, -"mbk": 1, -"gb": 144, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -750, -751, -752, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -753, -391 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 2496, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -1606, -1607, -1608, -1609, -130, -131, -132, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 14, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -582, -583, -584, -585, -586, -130, -131, -132, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 75583175, -"mb": 160, -"mbk": 1, -"gb": 160, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -645, -646, -647, -648, -649, -650, -651, -652, -650, -653, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 3, -"tl": 2647, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -541, -542, -543, -544, -545, -546, -547, -548, -556, -198, -576, -577, -578, -579, -580, -581, -198 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 3306, -"mb": 72, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -699, -700, -701, -702, -1951, -561, -562, -563, -564, -565, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 3996340, -"tbk": 400060, -"tl": 366722507002, -"mb": 435634, -"mbk": 40006, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2475, -2476, -2477, -2478, -2479, -2480, -2481, -2482, -2483, -2484, -390, -391, -609, -610, -611, -612, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 2330, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1565, -1566, -1567, -561, -562, -563, -564, -565, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -474, -475, -476, -477, -478, -479, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 80, -"tbk": 2, -"tl": 3416, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2023, -2024, -2025, -705, -706, -707, -708, -709, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 15726720, -"tbk": 130, -"tl": 11443423, -"mb": 786432, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -2485, -2486, -2487, -2488, -2489, -2490, -609, -610, -611, -612, -24, -25, -26 -] -}, -{ -"tb": 144, -"tbk": 1, -"tl": 28, -"mb": 144, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -57, -58, -59, -60, -130, -131, -132, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23 -] -}, -{ -"tb": 112, -"tbk": 3, -"tl": 20, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -1972, -1973, -1974, -1975, -1976, -1977, -1978, -1979, -1980, -1981, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 2240, -"tbk": 10, -"tl": 1873745, -"mb": 224, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -791, -1534, -1535, -1536, -1537, -1538, -1539, -1540, -503, -504, -505, -506, -507, -508, -509, -510, -511, -512, -513, -514, -515, -516, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 8064, -"tbk": 6, -"tl": 155, -"mb": 4096, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -93, -94, -95, -96, -97, -98, -99, -100, -101, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -19 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75570456, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -596, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -942, -391, -609, -610, -611, -612 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -2271, -2272, -2491, -2492, -2493, -2494, -2495, -2496, -2497, -2498, -2499, -2500, -761, -762, -763, -764, -765, -766, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 252, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -61, -62, -63, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 1409, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -932, -933, -934, -935, -1541, -937, -762, -763, -764, -765, -766, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 3840, -"tbk": 20, -"tl": 1873254, -"mb": 256, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -791, -792, -793, -794, -2501, -2502, -2503, -266, -267, -503, -504, -505, -506, -507, -508, -509, -510, -511, -512, -513, -514, -515, -516, -270, -271, -272, -24, -25 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 2550, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1056, -1057, -1058, -1059, -1060, -761, -762, -763, -764, -765, -766, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1903, -1904, -1905, -1906, -1907, -1908, -1909, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23 -] -}, -{ -"tb": 212, -"tbk": 1, -"tl": 2, -"mb": 212, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2203, -2204, -2205, -2206, -2207, -2208, -2209, -2210, -2211, -2212, -1307, -1308, -1309, -1310, -1311, -1312, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 28, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -289, -290, -291, -292, -293, -294, -295, -296, -297, -61, -62, -63, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 108, -"tbk": 1, -"tl": 75571430, -"mb": 108, -"mbk": 1, -"gb": 108, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1088, -1089, -1090, -1091, -1092, -1093, -1094, -1095, -1096, -1097, -1098, -1099, -1100, -1101, -1102, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -698, -391 -] -}, -{ -"tb": 5908, -"tbk": 1, -"tl": 122, -"mb": 5908, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -767, -768, -769, -770, -771, -772, -773, -61, -62, -63, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -474, -475, -476, -477, -478, -479, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 240, -"tbk": 3, -"tl": 8915, -"mb": 240, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -133, -134, -135, -136, -137, -138, -139, -140, -141, -142, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 400, -"tbk": 1, -"tl": 75589357, -"mb": 400, -"mbk": 1, -"gb": 400, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -879, -880, -881, -882, -883, -884, -130, -131, -132, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 316, -"tbk": 1, -"tl": 28, -"mb": 316, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -57, -58, -59, -60, -61, -62, -63, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23 -] -}, -{ -"tb": 296, -"tbk": 9, -"tl": 680138139, -"mb": 296, -"mbk": 9, -"gb": 296, -"gbk": 9, -"eb": 0, -"ebk": 0, -"fs": [ -364, -365, -366, -367, -368, -369, -370, -371, -372, -373, -2504, -2505, -2506, -2434, -2435, -379, -380, -381, -382, -383, -384, -385, -386, -387, -388, -389, -390, -391 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 28, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2507, -2508, -2509, -2510, -642, -643, -644, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 288, -"tbk": 2, -"tl": 4706, -"mb": 288, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -557, -558, -559, -560, -561, -562, -563, -564, -565, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 2, -"tl": 822, -"mb": 64, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -1766, -546, -547, -548, -191, -576, -577, -578, -579, -580, -581, -198, -776, -777, -778, -576, -577, -578, -579, -580, -581 -] -}, -{ -"tb": 3968, -"tbk": 5, -"tl": 75571043, -"mb": 2048, -"mbk": 1, -"gb": 2048, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -683, -684, -685, -686, -687, -688, -689, -690, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -390, -391 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 740, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -1137, -1138, -1139, -1140, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1049, -1050, -1051, -1052, -1053, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92 -] -}, -{ -"tb": 560, -"tbk": 7, -"tl": 0, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -105, -106, -107, -108, -109, -110, -111, -112, -113, -114, -115, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 6688, -"tbk": 806, -"tl": 8259, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1061, -1062, -1063, -1064, -191, -198, -192, -193, -194, -195, -196, -197, -198, -199, -200, -201, -202, -128, -129, -130, -131, -132, -13, -14, -15 -] -}, -{ -"tb": 120, -"tbk": 2, -"tl": 75585704, -"mb": 96, -"mbk": 1, -"gb": 24, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -613, -614, -615, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 75572773, -"mb": 160, -"mbk": 1, -"gb": 160, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -645, -646, -647, -648, -649, -650, -651, -652, -650, -653, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 3, -"tl": 8945, -"mb": 96, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -1794, -1795, -1796, -1797, -1798, -1799, -1800, -1801, -1802, -1803, -1804, -1805, -1806, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 1440, -"tbk": 4, -"tl": 71, -"mb": 768, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -326, -327, -328, -13, -14, -15, -16, -17, -18, -103, -104 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 48, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1290, -1291, -1292, -1293, -1294, -176, -177, -178, -179, -180, -181, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 423, -"tbk": 20, -"tl": 1463337, -"mb": 30, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -1659, -1660, -1661, -1662, -1663, -1664, -1665, -1666, -1667, -1668, -1669, -1670, -1671, -1672, -1673, -1674, -1675, -1676, -1677, -1674, -1678, -1679, -1680, -1575, -1576, -1575, -1576, -1577, -1578, -1579, -1580, -1581, -1582, -2411, -2412, -504, -505, -506, -507, -508, -509, -510, -511, -512, -513, -514, -515, -516, -270 -] -}, -{ -"tb": 2, -"tbk": 1, -"tl": 51, -"mb": 2, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -299, -300, -301, -302, -303, -304, -305, -306, -307, -308, -309, -310, -311, -312, -130, -131, -132, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 43, -"tbk": 4, -"tl": 638, -"mb": 43, -"mbk": 4, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -392, -393, -394, -395, -396, -397, -398, -399, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 12, -"tl": 8745, -"mb": 48, -"mbk": 6, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -1766, -1595, -1596, -1597, -549, -550, -551, -552, -553, -554, -555, -556, -198, -576, -577, -578, -579, -580, -581 -] -}, -{ -"tb": 24, -"tbk": 2, -"tl": 75585462, -"mb": 16, -"mbk": 1, -"gb": 8, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -517, -518, -519, -520, -521, -522, -523, -524, -525, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 2, -"tl": 10, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -174, -175, -176, -177, -178, -179, -180, -181, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 48, -"tbk": 3, -"tl": 260, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1061, -1062, -1063, -1064, -556, -198, -576, -577, -578, -579, -580, -581, -198, -199, -200, -201, -202, -128, -129, -130, -131, -132, -13, -14, -15 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 962, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 77515097, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 64, -"ebk": 1, -"fs": [ -47, -480, -1005, -1006, -1007, -1008, -1009, -1010, -2511, -2512, -2513, -2514, -2515, -2516, -2517, -2518, -2519, -2520, -2521, -2522, -2523, -2524, -2525, -2526, -26 -] -}, -{ -"tb": 2598290, -"tbk": 400060, -"tl": 14464712, -"mb": 13, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2527, -2528, -2529, -2530, -2531, -2532, -2533, -2534, -2535, -2536, -2537, -2538, -1708, -223, -224, -225, -226, -227, -24, -25, -26 -] -}, -{ -"tb": 140, -"tbk": 1, -"tl": 77514070, -"mb": 140, -"mbk": 1, -"gb": 140, -"gbk": 1, -"eb": 140, -"ebk": 1, -"fs": [ -1767, -1768, -1769, -1770, -1771, -1772, -1773, -1774, -1775, -1776, -1777, -1778, -2539, -2540, -2541, -2542, -898, -899, -900, -901, -902, -903, -904, -905, -906, -907, -908, -909, -910, -911, -912, -913, -914, -915, -916, -917, -918, -919, -920 -] -}, -{ -"tb": 48, -"tbk": 2, -"tl": 20, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -1972, -1973, -1974, -1975, -1976, -1977, -1978, -1979, -1980, -1981, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 22, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1731, -1732, -1733, -1734, -1735, -1736, -1737, -1738, -1739, -1740, -1741, -1742, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 74, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2543, -2544, -2545, -2546, -2547, -138, -139, -140, -141, -142, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 1853, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1370, -1371, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 480, -"tbk": 15, -"tl": 16933, -"mb": 192, -"mbk": 6, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -541, -542, -543, -544, -545, -1595, -1596, -1597, -556, -198, -576, -577, -578, -579, -580, -581, -198 -] -}, -{ -"tb": 480, -"tbk": 2, -"tl": 674, -"mb": 320, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1825, -1826, -1827, -1992, -1993, -1994, -1995, -1996, -1997, -1998, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 3312, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -1137, -1138, -1139, -1140, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 1288, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -75, -76, -77, -78, -79, -80, -81, -82, -83, -84, -85, -86, -87, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2548, -2549, -2550, -2551, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 640, -"tbk": 1, -"tl": 801, -"mb": 640, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1637, -1638, -1639, -1640, -1641, -1642, -1643, -423, -424, -425, -426, -427, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 1, -"tbk": 1, -"tl": 481, -"mb": 1, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -400, -401, -402, -403, -404, -405, -406, -407, -408, -409, -410, -411, -412, -413, -414, -415, -731, -732, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 624, -"tbk": 3, -"tl": 9, -"mb": 384, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2229, -2230, -110, -111, -112, -113, -114, -115, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 896, -"tbk": 1, -"tl": 246, -"mb": 896, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -710, -711, -712, -713, -714, -715, -716, -717, -718, -719, -720, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -474, -475, -476, -477, -478, -479, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 16, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -2552, -2553, -2554, -2555, -2556, -2557, -2558, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 2, -"tl": 413, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -1766, -546, -547, -548, -556, -198, -576, -577, -578, -579, -580, -581, -1568, -1569, -1570, -1571, -1572, -554, -555 -] -}, -{ -"tb": 128, -"tbk": 1, -"tl": 258, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -989, -990, -991, -992, -993, -994, -995, -996, -997, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 1974, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1616, -1617, -1618, -1619, -762, -763, -764, -765, -766, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32000, -"tbk": 2, -"tl": 480, -"mb": 16000, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1956, -1957, -1958, -1959, -1960, -1961, -1962, -1963, -1964, -1965, -1966, -549, -550, -551, -552, -553, -554, -555, -556, -828, -829, -830, -831, -832, -833, -199, -200, -201, -202, -128, -129, -61, -62, -63, -13, -14, -15 -] -}, -{ -"tb": 7398940, -"tbk": 100000, -"tl": 531413866119, -"mb": 748894, -"mbk": 10000, -"gb": 748894, -"gbk": 10000, -"eb": 0, -"ebk": 0, -"fs": [ -2559, -2560, -2561, -2562, -2563, -2564, -2565, -2566, -2567, -2568, -2569, -2570, -2571, -2572, -2573, -24, -25, -26 -] -}, -{ -"tb": 2, -"tbk": 1, -"tl": 37, -"mb": 2, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -299, -300, -301, -302, -303, -304, -305, -306, -307, -308, -309, -310, -311, -312, -130, -131, -132, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 1448, -"tbk": 1, -"tl": 75581170, -"mb": 1448, -"mbk": 1, -"gb": 1448, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1268, -1269, -1270, -1271, -1272, -1273, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 75570438, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1542, -1543, -1544, -1545, -1546, -1547, -1548, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -942, -391 -] -}, -{ -"tb": 320, -"tbk": 4, -"tl": 0, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1263, -1264, -1265, -1266, -1323, -937, -762, -763, -764, -765, -766, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 300, -"tbk": 1, -"tl": 75570043, -"mb": 300, -"mbk": 1, -"gb": 300, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -938, -939, -940, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -753, -391 -] -}, -{ -"tb": 5896, -"tbk": 1, -"tl": 72902774, -"mb": 5896, -"mbk": 1, -"gb": 5896, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -750, -751, -752, -1399, -1400, -1401, -1402, -1403, -1404, -1405, -1406, -457, -458, -459, -460, -461, -462, -463, -464, -465, -223 -] -}, -{ -"tb": 2000, -"tbk": 1, -"tl": 75573916, -"mb": 2000, -"mbk": 1, -"gb": 2000, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1259, -1260, -1261, -1262, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 85, -"tbk": 1, -"tl": 0, -"mb": 85, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -337, -338, -339, -340, -341, -342, -343, -344, -345, -346, -347, -348, -349, -350, -351, -352, -731, -732, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 77515031, -"mb": 80, -"mbk": 1, -"gb": 80, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -2574, -2575, -2576, -2577, -2578, -2579, -2580, -2581, -2582, -2583, -2584, -2585, -26 -] -}, -{ -"tb": 644, -"tbk": 19, -"tl": 188, -"mb": 112, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -255, -256, -257, -258, -259, -260, -261, -262, -263, -264, -265, -266, -267, -731, -732, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 144, -"tbk": 3, -"tl": 22805, -"mb": 144, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -857, -858, -859, -860, -762, -763, -764, -765, -766, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 75580550, -"mb": 80, -"mbk": 1, -"gb": 80, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -65, -66, -67, -68, -69, -70, -71, -72, -73, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 3200000, -"tbk": 100000, -"tl": 9197, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2586, -2587, -2588, -2589, -2590, -2591, -2592, -2593, -2594, -2595, -2596, -2597, -753, -391, -609, -610, -611, -612, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 2232, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -133, -134, -135, -136, -137, -138, -139, -140, -141, -142, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 880, -"tbk": 11, -"tl": 1, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1263, -1264, -1265, -1266, -1323, -937, -762, -763, -764, -765, -766, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 882, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -2185, -2186, -2187, -2188, -2189, -2190, -2191, -2598, -2599, -2600, -2601, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 56, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2602, -2603, -2604, -2605, -2606, -1424, -1425, -1426, -1427, -1428, -1429, -1430, -1431, -1432, -1433, -1434, -1435, -1436, -1437, -1438, -1439, -1440, -1441, -1442, -1443, -1444, -1445, -1446, -1447, -1448, -1449, -1450, -1451, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 25920, -"tbk": 30, -"tl": 6168359, -"mb": 2592, -"mbk": 3, -"gb": 2592, -"gbk": 3, -"eb": 0, -"ebk": 0, -"fs": [ -47, -1203, -1204, -1205, -1206, -2607, -2608, -2609, -2610, -2611, -1212, -1213, -1214, -1215, -1216, -1217 -] -}, -{ -"tb": 568, -"tbk": 71, -"tl": 18, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1000, -1001, -1002, -1003, -1004, -191, -839, -840, -841, -842, -843, -844, -776, -777, -778, -839, -840, -841, -842, -843, -844, -199, -200, -201, -202, -128, -129, -61, -62, -63 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 19, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1847, -1848, -1849, -1850, -1851, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 622, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -75, -76, -77, -78, -79, -80, -81, -82, -83, -84, -85, -86, -87, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 84, -"tbk": 2, -"tl": 151153419, -"mb": 84, -"mbk": 2, -"gb": 84, -"gbk": 2, -"eb": 0, -"ebk": 0, -"fs": [ -869, -870, -871, -872, -873, -874, -875, -876, -877, -878, -61, -62, -63, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1110, -1111, -1112, -1113, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 7398940, -"tbk": 100000, -"tl": 531414397162, -"mb": 748894, -"mbk": 10000, -"gb": 748894, -"gbk": 10000, -"eb": 0, -"ebk": 0, -"fs": [ -2612, -2613, -2614, -2615, -2616, -2617, -2618, -2619, -2620, -2621, -2622, -2623, -2624, -2625, -24, -25, -26 -] -}, -{ -"tb": 12, -"tbk": 1, -"tl": 75585646, -"mb": 12, -"mbk": 1, -"gb": 12, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -869, -870, -871, -872, -873, -874, -875, -876, -877, -878, -130, -131, -132, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 224, -"tbk": 6, -"tl": 310, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -824, -825, -826, -827, -556, -828, -829, -830, -831, -832, -833, -834, -835, -836, -837, -838, -554, -555, -556 -] -}, -{ -"tb": 23, -"tbk": 1, -"tl": 277, -"mb": 23, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -392, -393, -394, -395, -396, -397, -398, -399, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 1448, -"tbk": 1, -"tl": 75591568, -"mb": 1448, -"mbk": 1, -"gb": 1448, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1268, -1269, -1270, -1271, -1272, -1273, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 640, -"tbk": 6, -"tl": 14290, -"mb": 448, -"mbk": 4, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -2235, -2236, -2237, -2238, -2239, -2240, -2241, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 144, -"tbk": 3, -"tl": 8890, -"mb": 144, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -857, -858, -859, -860, -762, -763, -764, -765, -766, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 0, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -2336, -2337, -2338, -2626, -2627, -2628, -2629, -2630, -2631, -2632, -1833, -1834, -1835, -1836, -1837, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 480, -"tbk": 4, -"tl": 71, -"mb": 256, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1999, -2000, -2001, -2002, -2003, -2004, -2005, -2006, -2007, -322, -323, -324, -325, -326, -327, -328, -13, -14, -15, -16, -17, -18, -103, -104 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 393, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -575, -547, -548, -556, -576, -577, -578, -579, -580, -581, -834, -835, -836, -837, -838, -554, -555, -556, -198 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 3839, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -2194, -2195, -2196, -2197, -2198, -2199, -2200, -2201, -2202, -172, -173, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 27, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1610, -1611, -1612, -1613, -1614, -1615, -130, -131, -132, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -474, -475, -1482, -1483, -1484, -1485, -13, -14, -15, -16, -17, -18, -19 -] -}, -{ -"tb": 268, -"tbk": 1, -"tl": 346, -"mb": 268, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -767, -768, -769, -770, -771, -772, -773, -130, -131, -132, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 7848, -"tbk": 7, -"tl": 75574001, -"mb": 3072, -"mbk": 1, -"gb": 1800, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1179, -1180, -1181, -1182, -1183, -1184, -1185, -1186, -61, -62, -63, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 2036, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1255, -1256, -1257, -1258, -937, -762, -763, -764, -765, -766, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 77516023, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -2633, -2634, -2635, -2636, -2637, -2638, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 766, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1943, -1944, -1945, -1946, -1947, -1948, -1949, -1950, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 45, -"tbk": 2, -"tl": 152, -"mb": 30, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -1573, -1574, -1575, -1576, -1575, -1576, -1577, -1578, -1579, -1580, -1581, -1582, -2639, -2640, -2641, -270, -271, -272, -24, -25 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 102, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2642, -2643, -2644, -2645, -2646, -2647, -2648, -2649, -2650, -2651, -2652, -1436, -1437, -1438, -1439, -1440, -1441, -1442, -1443, -1444, -1445, -1446, -1447, -1448, -1449, -1450, -1451, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 240, -"tbk": 5, -"tl": 0, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1515, -1516, -1517, -1518, -1519, -176, -177, -178, -179, -180, -181, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 30327, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -2426, -2427, -2428, -937, -762, -763, -764, -765, -766, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 176, -"tbk": 1, -"tl": 75598892, -"mb": 176, -"mbk": 1, -"gb": 176, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1936, -1937, -1938, -1939, -1940, -1941, -1942, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 183, -"tbk": 2, -"tl": 21, -"mb": 122, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -2653, -2654, -2655, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 7546, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -1561, -1562, -1563, -937, -762, -763, -764, -765, -766, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 32, -"tbk": 2, -"tl": 1088, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -1245, -1246, -554, -555, -198, -576, -577, -578, -579, -580, -581, -198 -] -}, -{ -"tb": 23, -"tbk": 1, -"tl": 75590341, -"mb": 23, -"mbk": 1, -"gb": 23, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -654, -655, -656, -657, -658, -659, -660, -661, -662, -663, -664, -665, -666, -667, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 40, -"tbk": 2, -"tl": 75574528, -"mb": 32, -"mbk": 1, -"gb": 8, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -845, -846, -847, -848, -849, -850, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 75572207, -"mb": 72, -"mbk": 1, -"gb": 72, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -528, -529, -530, -531, -532, -533, -534, -535, -536, -537, -130, -131, -132, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75570397, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -2390, -2391, -2392, -2393, -2394, -2395, -2396, -2397, -2398, -457, -458, -604, -605, -606, -607, -608, -941, -391, -609, -610, -611, -612, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 75599902, -"mb": 96, -"mbk": 1, -"gb": 96, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1218, -1219, -1220, -1221, -1222, -1223, -1224, -130, -131, -132, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 20160, -"tbk": 365, -"tl": 2888976, -"mb": 13760, -"mbk": 249, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -2656, -2657, -2658, -2659, -2660, -1595, -1596, -1597, -191, -198, -192, -193, -194, -195, -196, -197, -198 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 2707, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -2661, -2662, -2663, -716, -717, -718, -719, -720, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 320, -"tbk": 4, -"tl": 11319, -"mb": 320, -"mbk": 4, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1173, -1174, -1175, -1176, -1177, -1178, -762, -763, -764, -765, -766, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 2368, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -1137, -1138, -1139, -1140, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 24, -"tbk": 3, -"tl": 956, -"mb": 16, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -1766, -546, -547, -548, -556, -576, -577, -578, -579, -580, -581, -198, -198, -199, -200, -201, -202 -] -}, -{ -"tb": 4, -"tbk": 1, -"tl": 75579467, -"mb": 4, -"mbk": 1, -"gb": 4, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1030, -1031, -1032, -1033, -1034, -1035, -1036, -1037, -1038, -1039, -1040, -61, -62, -63, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75571458, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -596, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -698, -391, -609, -610, -611, -612 -] -}, -{ -"tb": 135, -"tbk": 2, -"tl": 948, -"mb": 90, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -2664, -2665, -2666, -2667, -26 -] -}, -{ -"tb": 232, -"tbk": 1, -"tl": 164, -"mb": 232, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -767, -768, -769, -770, -771, -772, -773, -130, -131, -132, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 1317, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -332, -333, -334, -335, -336, -199, -200, -201, -202, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -74 -] -}, -{ -"tb": 1104, -"tbk": 2, -"tl": 183, -"mb": 736, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1388, -1389, -1390, -1391, -1392, -1393, -1394, -1395, -1396, -1397, -1398, -1195, -1196, -26 -] -}, -{ -"tb": 704, -"tbk": 11, -"tl": 491, -"mb": 704, -"mbk": 11, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -2348, -2349, -2350, -2351, -2352, -2353, -2354, -322, -323, -324, -325, -326, -327, -328, -13, -14, -15, -16, -17, -18, -64 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 18, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -986, -987, -988, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 192, -"tbk": 4, -"tl": 576, -"mb": 96, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1746, -1747, -1748, -1749, -1750, -716, -717, -718, -719, -720, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 2, -"tl": 350, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -1245, -1246, -554, -555, -556, -198, -576, -577, -578, -579, -580, -581 -] -}, -{ -"tb": 400, -"tbk": 1, -"tl": 75600610, -"mb": 400, -"mbk": 1, -"gb": 400, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -879, -880, -881, -882, -883, -884, -61, -62, -63, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 311, -"tbk": 1, -"tl": 43, -"mb": 311, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -960, -961, -962, -963, -964, -965, -966, -967, -61, -62, -63, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 391, -"mb": 72, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -575, -547, -548, -191, -576, -577, -578, -579, -580, -581, -198, -776, -777, -778, -576, -577, -578, -579, -580, -581, -198 -] -}, -{ -"tb": 2, -"tbk": 1, -"tl": 44, -"mb": 2, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -299, -300, -301, -302, -303, -304, -305, -306, -307, -308, -309, -310, -311, -312, -130, -131, -132, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 610, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1386, -1387, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25 -] -}, -{ -"tb": 896, -"tbk": 3, -"tl": 75570520, -"mb": 512, -"mbk": 1, -"gb": 512, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -683, -684, -685, -686, -687, -688, -689, -690, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -942, -391 -] -}, -{ -"tb": 960, -"tbk": 30, -"tl": 8936, -"mb": 192, -"mbk": 6, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -541, -542, -543, -544, -545, -1595, -1596, -1597, -549, -550, -551, -552, -553, -554, -555, -556, -198 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 578, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -332, -333, -334, -335, -336, -199, -200, -201, -202, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -298 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 10, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1167, -1168, -1169, -1170, -11, -12, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 424, -"tbk": 1, -"tl": 75571196, -"mb": 424, -"mbk": 1, -"gb": 424, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -750, -751, -752, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -390, -391 -] -}, -{ -"tb": 1244, -"tbk": 1, -"tl": 111, -"mb": 1244, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -767, -768, -769, -770, -771, -772, -773, -61, -62, -63, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 11, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -582, -583, -584, -585, -586, -130, -131, -132, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 252, -"tbk": 1, -"tl": 77, -"mb": 252, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -1103, -1104, -1105, -1106, -1107, -1108, -1109, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 560, -"tbk": 7, -"tl": 317, -"mb": 160, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -932, -933, -934, -935, -1598, -1599, -762, -763, -764, -765, -766, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 480, -"tbk": 2, -"tl": 411, -"mb": 320, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1825, -1826, -1827, -1992, -1993, -1994, -1995, -1996, -1997, -1998, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 192, -"tbk": 6, -"tl": 1891, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -541, -542, -543, -544, -545, -546, -547, -548, -556, -198, -576, -577, -578, -579, -580, -581, -549, -550, -551, -552, -553 -] -}, -{ -"tb": 96, -"tbk": 2, -"tl": 4502, -"mb": 96, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -857, -858, -859, -860, -762, -763, -764, -765, -766, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 27, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1731, -1732, -1733, -1734, -1735, -1736, -1737, -1738, -1739, -1740, -1741, -1742, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 77515646, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -2668, -2669, -2670, -2671, -2672, -2673, -2674, -2675, -2676, -2677, -2678, -2679, -1195, -1196, -26 -] -}, -{ -"tb": 40, -"tbk": 1, -"tl": 75588739, -"mb": 40, -"mbk": 1, -"gb": 40, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1118, -1119, -1120, -1121, -1122, -1123, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 18, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1999, -2000, -2001, -2002, -2003, -2004, -2005, -2006, -2007, -322, -323, -324, -325, -326, -327, -328, -13, -14, -15, -16, -17, -18, -298 -] -}, -{ -"tb": 40, -"tbk": 1, -"tl": 75599496, -"mb": 40, -"mbk": 1, -"gb": 40, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1118, -1119, -1120, -1121, -1122, -1123, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75570154, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -1357, -1358, -1359, -1360, -1361, -1362, -1363, -1364, -1365, -1366, -1367, -1368, -1369, -457, -458, -604, -605, -606, -607, -608, -753, -391, -609, -610, -611, -612, -24, -25 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 28, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1610, -1611, -1612, -1613, -1614, -1615, -130, -131, -132, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 176, -"tbk": 2, -"tl": 1094, -"mb": 88, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -575, -547, -548, -549, -550, -551, -552, -553, -554, -555, -556, -198, -576, -577, -578, -579, -580, -581, -198 -] -}, -{ -"tb": 240, -"tbk": 3, -"tl": 229, -"mb": 240, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -932, -933, -934, -935, -1598, -1599, -762, -763, -764, -765, -766, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 240, -"tbk": 10, -"tl": 2122134, -"mb": 24, -"mbk": 1, -"gb": 24, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -2680, -2681, -2682, -1883, -1217, -225, -226, -227, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 84, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -1606, -1607, -1608, -1609, -61, -62, -63, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 30732, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1943, -1944, -1945, -1240, -1241, -1242, -1243, -1244, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 30676, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -1137, -1138, -1139, -1140, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 2, -"tl": 37, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -174, -175, -176, -177, -178, -179, -180, -181, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 10, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -582, -583, -584, -585, -586, -130, -131, -132, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 144, -"tbk": 3, -"tl": 8892, -"mb": 144, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -857, -858, -859, -860, -762, -763, -764, -765, -766, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 1334, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1173, -1174, -1175, -1176, -1177, -1178, -762, -763, -764, -765, -766, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 424, -"tbk": 1, -"tl": 19, -"mb": 424, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -57, -58, -59, -60, -61, -62, -63, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23 -] -}, -{ -"tb": 576, -"tbk": 2, -"tl": 202, -"mb": 384, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -946, -947, -948, -1760, -1761, -1762, -1763, -1764, -1765, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 261, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -19 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -474, -475, -476, -477, -478, -479, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 192, -"tbk": 4, -"tl": 0, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1515, -1516, -1517, -1518, -1519, -176, -177, -178, -179, -180, -181, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 12, -"tl": 4587, -"mb": 48, -"mbk": 6, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -1766, -1595, -1596, -1597, -556, -576, -577, -578, -579, -580, -581, -834, -835, -836, -837, -838, -554, -555, -556 -] -}, -{ -"tb": 1920, -"tbk": 3, -"tl": 0, -"mb": 640, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1637, -1638, -1639, -1640, -1641, -1642, -1643, -423, -424, -425, -426, -427, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 128, -"tbk": 3, -"tl": 4384, -"mb": 96, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -1794, -1795, -1796, -1797, -1798, -1799, -1800, -1801, -1802, -1803, -1804, -1805, -1806, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 10, -"mb": 160, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1295, -1296, -1297, -1298, -1299, -1300, -1301, -1302, -1303, -1304, -1305, -1306, -1307, -1308, -1309, -1310, -1311, -1312, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 30669, -"mb": 72, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -699, -700, -701, -702, -1600, -1601, -1602, -1603, -1604, -1605, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 32768200, -"tbk": 150, -"tl": 18357442, -"mb": 2457616, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2683, -2684, -2685, -2686, -2687, -2688, -2689, -2690, -2691, -2692, -2693, -2694, -2695, -2696, -2697, -390, -391, -609, -610, -611, -612, -24, -25, -26 -] -}, -{ -"tb": 108, -"tbk": 1, -"tl": 72902716, -"mb": 108, -"mbk": 1, -"gb": 108, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1088, -1089, -1090, -1091, -1092, -1093, -1094, -1095, -1096, -1097, -1098, -1099, -1100, -1101, -1102, -448, -1399, -1400, -1401, -1402, -1403, -1404, -1405, -1406, -457, -458, -459, -460, -461, -462, -463, -464, -465, -223 -] -}, -{ -"tb": 1568, -"tbk": 3, -"tl": 165, -"mb": 896, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -791, -1534, -1535, -1536, -1537, -1538, -1539, -1540, -268, -269, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 1, -"tbk": 1, -"tl": 51, -"mb": 1, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2698, -2699, -2700, -2701, -2702, -2703, -2704, -2705, -640, -641, -642, -643, -644, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 918, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -103, -104 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 18, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1847, -1848, -1849, -1850, -1851, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92 -] -}, -{ -"tb": 768, -"tbk": 4, -"tl": 10976, -"mb": 768, -"mbk": 4, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -1561, -1562, -1563, -937, -762, -763, -764, -765, -766, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 386, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -2336, -2337, -2338, -2339, -2340, -2341, -2342, -2343, -2344, -2345, -2346, -2347, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 192, -"tbk": 6, -"tl": 1190, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -541, -542, -543, -544, -545, -546, -547, -548, -556, -198, -576, -577, -578, -579, -580, -581, -834, -835, -836, -837, -838 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 0, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -105, -106, -107, -108, -109, -110, -111, -112, -113, -1852, -1853, -1854, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75587365, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1520, -1521, -1522, -1523, -1524, -1525, -1526, -1527, -1528, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 8, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -2552, -2553, -2554, -2555, -2556, -2557, -2558, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 128, -"tbk": 3, -"tl": 4482, -"mb": 96, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -1794, -1795, -1796, -1797, -1798, -1799, -1800, -1801, -1802, -1803, -1804, -1805, -1806, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 240, -"tbk": 3, -"tl": 0, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -105, -106, -107, -108, -109, -110, -111, -112, -113, -114, -115, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 77514929, -"mb": 48, -"mbk": 1, -"gb": 48, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -2706, -2707, -2708, -2709, -2710, -2711, -2712, -2713, -2714, -2715, -2716, -2717, -2718, -2719, -2720, -2721, -2722, -2723, -2724, -2725, -1027, -1028, -1029 -] -}, -{ -"tb": 36, -"tbk": 1, -"tl": 128, -"mb": 36, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -767, -768, -769, -770, -771, -772, -773, -130, -131, -132, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 256, -"tbk": 2, -"tl": 21, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2726, -2727, -2728, -2729, -2730, -2731, -2732, -2733, -2734, -2735, -2736, -2737, -2738, -2735, -2739, -2740, -2741, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 75572235, -"mb": 96, -"mbk": 1, -"gb": 96, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1218, -1219, -1220, -1221, -1222, -1223, -1224, -130, -131, -132, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 75573756, -"mb": 72, -"mbk": 1, -"gb": 72, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -278, -279, -280, -281, -282, -283, -284, -285, -286, -287, -288, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 30449, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -1794, -1795, -1796, -1797, -1798, -1799, -1800, -1801, -1802, -1803, -1804, -1805, -1806, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 7830, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1943, -1944, -1945, -2742, -2743, -2744, -2745, -2746, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 2698, -"mb": 72, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -575, -547, -548, -191, -192, -193, -194, -195, -196, -197, -198, -198, -199, -200, -201, -202, -128, -129 -] -}, -{ -"tb": 2000, -"tbk": 1, -"tl": 75581190, -"mb": 2000, -"mbk": 1, -"gb": 2000, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1259, -1260, -1261, -1262, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 16000, -"tbk": 1, -"tl": 166, -"mb": 16000, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1956, -1957, -1958, -1959, -1960, -1961, -1962, -1963, -1964, -1965, -1966, -556, -828, -829, -830, -831, -832, -833, -199, -200, -201, -202, -128, -129, -61, -62, -63, -13, -14, -15, -16, -17, -18, -298 -] -}, -{ -"tb": 240, -"tbk": 2, -"tl": 9, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2229, -2230, -110, -111, -112, -113, -114, -115, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 239, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1610, -1611, -1612, -1613, -1620, -1436, -1424, -1425, -1426, -1427, -1428, -1429, -1430, -1431, -1432, -1433, -1434, -1435, -1436, -1437, -1438, -1439, -1440, -1441, -1442, -1443, -1444, -1445, -1446, -1447, -1448, -1449, -1450, -1451, -13, -14, -15, -16, -17, -18, -526, -527 -] -}, -{ -"tb": 9, -"tbk": 2, -"tl": 180, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -1573, -1574, -1577, -1578, -1579, -1580, -1581, -1582, -2639, -2640, -2641, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 128, -"tbk": 1, -"tl": 31, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -989, -990, -991, -992, -993, -994, -995, -2747, -2748, -2749, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 224, -"tbk": 1, -"tl": 2754, -"mb": 224, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -2750, -2751, -2752, -2753, -2754, -2755, -2756, -2757, -1750, -716, -717, -718, -719, -720, -16, -17, -18, -103, -104, -90, -91, -92 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 284, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2543, -2544, -2545, -2546, -2547, -138, -139, -140, -141, -142, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 2, -"tl": 59, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -1606, -1607, -1608, -1609, -130, -131, -132, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 176, -"tbk": 1, -"tl": 75573180, -"mb": 176, -"mbk": 1, -"gb": 176, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1936, -1937, -1938, -1939, -1940, -1941, -1942, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 2, -"tl": 47, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -1606, -1607, -1608, -1609, -61, -62, -63, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 252, -"tbk": 1, -"tl": 23, -"mb": 252, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -57, -58, -59, -60, -130, -131, -132, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 1472, -"tbk": 23, -"tl": 2248, -"mb": 1472, -"mbk": 23, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -2348, -2349, -2350, -2351, -2352, -2353, -2354, -322, -323, -324, -325, -326, -327, -328, -13, -14, -15, -16, -17, -18, -103, -104 -] -}, -{ -"tb": 960, -"tbk": 30, -"tl": 13343, -"mb": 192, -"mbk": 6, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -541, -542, -543, -544, -545, -1595, -1596, -1597, -556, -198, -576, -577, -578, -579, -580, -581, -549, -550, -551, -552, -553 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 27, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1610, -1611, -1612, -1613, -1614, -1615, -130, -131, -132, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 424, -"tbk": 1, -"tl": 75571205, -"mb": 424, -"mbk": 1, -"gb": 424, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -750, -751, -752, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -390, -391 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 160, -"mb": 160, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1825, -1826, -1827, -1992, -1993, -1994, -1995, -1996, -1997, -1998, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 11, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -582, -583, -584, -585, -586, -130, -131, -132, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 560, -"tbk": 7, -"tl": 320, -"mb": 160, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -932, -933, -934, -935, -1598, -1599, -762, -763, -764, -765, -766, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 10, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -596, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -753 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 92, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -955, -956, -957, -958, -959, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23 -] -}, -{ -"tb": 212, -"tbk": 1, -"tl": 76, -"mb": 212, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -1103, -1104, -1105, -1106, -1107, -1108, -1109, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 75599688, -"mb": 96, -"mbk": 1, -"gb": 96, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1218, -1219, -1220, -1221, -1222, -1223, -1224, -61, -62, -63, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 208, -"tbk": 3, -"tl": 75581906, -"mb": 128, -"mbk": 1, -"gb": 128, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -998, -999, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 288, -"tbk": 2, -"tl": 15634, -"mb": 288, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -557, -558, -559, -560, -561, -562, -563, -564, -565, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 38, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1167, -1168, -1169, -1170, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 2, -"tl": 35, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1999, -2000, -2001, -2002, -2003, -2004, -2005, -2006, -2007, -322, -323, -324, -325, -326, -327, -328, -13, -14, -15, -16, -17, -18, -116 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 75570371, -"mb": 160, -"mbk": 1, -"gb": 160, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -938, -939, -940, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -941, -391 -] -}, -{ -"tb": 24, -"tbk": 3, -"tl": 232547081, -"mb": 24, -"mbk": 3, -"gb": 24, -"gbk": 3, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -620, -621, -622, -623, -624, -625, -626, -627, -628, -2758, -2759, -26 -] -}, -{ -"tb": 240, -"tbk": 2, -"tl": 10, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2229, -2230, -110, -111, -112, -113, -1852, -1853, -1854, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 448, -"tbk": 6, -"tl": 519, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -2656, -2657, -2658, -2659, -2660, -1595, -1596, -1597, -556, -576, -577, -578, -579, -580, -581, -834, -835, -836, -837, -838, -554, -555 -] -}, -{ -"tb": 640, -"tbk": 11, -"tl": 3222, -"mb": 288, -"mbk": 5, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -2656, -2657, -2658, -2659, -2660, -1595, -1596, -1597, -556, -576, -577, -578, -579, -580, -581, -198, -198 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 77516565, -"mb": 96, -"mbk": 1, -"gb": 96, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -2760, -2761, -2762, -2763, -2764, -2765, -2766, -2767, -2768, -2769, -2770 -] -}, -{ -"tb": 144, -"tbk": 1, -"tl": 1606, -"mb": 144, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -557, -558, -559, -560, -561, -562, -563, -564, -565, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 29, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 82, -"tbk": 7, -"tl": 319, -"mb": 34, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -721, -722, -723, -724, -725, -726, -727, -728, -729, -730, -138, -139, -140, -141, -142, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75598907, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1520, -1521, -1522, -1523, -1524, -1525, -1526, -1527, -1528, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -474, -475, -1482, -1483, -1484, -1485, -13, -14, -15, -16, -17, -18, -143, -144 -] -}, -{ -"tb": 192, -"tbk": 6, -"tl": 449, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -541, -542, -543, -544, -545, -546, -547, -548, -556, -576, -577, -578, -579, -580, -581, -834, -835, -836, -837, -838, -554, -555 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 175, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -332, -333, -334, -335, -336, -199, -200, -201, -202, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -143, -144 -] -}, -{ -"tb": 300, -"tbk": 1, -"tl": 18, -"mb": 300, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -57, -58, -59, -60, -61, -62, -63, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 75581377, -"mb": 96, -"mbk": 1, -"gb": 96, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1218, -1219, -1220, -1221, -1222, -1223, -1224, -61, -62, -63, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 1398020, -"tbk": 200030, -"tl": 1875352, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2771, -2772, -2773, -2774, -2775, -2776, -2777, -2778, -2779, -2780, -2781, -223, -224, -225, -226, -227, -24, -25, -26 -] -}, -{ -"tb": 896, -"tbk": 3, -"tl": 75569970, -"mb": 512, -"mbk": 1, -"gb": 512, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -683, -684, -685, -686, -687, -688, -689, -690, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -753, -391 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 75570071, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1542, -1543, -1544, -1545, -1546, -1547, -1548, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -753, -391 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1903, -1904, -1905, -1906, -1907, -1908, -1909, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92 -] -}, -{ -"tb": 84, -"tbk": 1, -"tl": 142, -"mb": 84, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -767, -768, -769, -770, -771, -772, -773, -130, -131, -132, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 480, -"tbk": 6, -"tl": 0, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1263, -1264, -1265, -1266, -1323, -937, -762, -763, -764, -765, -766, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 1984, -"tbk": 5, -"tl": 1745, -"mb": 1024, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -2661, -2662, -2663, -716, -717, -718, -719, -720, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 0, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -2336, -2337, -2338, -2626, -2627, -2628, -2629, -2630, -2631, -2632, -1833, -1834, -1835, -1836, -1837, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 2, -"tl": 514, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -828, -829, -830, -831, -832, -833, -549, -550, -551, -552, -553, -554, -555, -839, -840, -841, -842, -843, -844, -199, -200, -201, -202 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 144, -"mb": 160, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -767, -768, -769, -770, -771, -772, -773, -130, -131, -132, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 1352, -"tbk": 1, -"tl": 72902906, -"mb": 1352, -"mbk": 1, -"gb": 1352, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -938, -939, -940, -449, -450, -451, -452, -453, -454, -455, -456, -457, -458, -459, -460, -461, -462, -463, -464, -465, -223 -] -}, -{ -"tb": 960, -"tbk": 30, -"tl": 9122, -"mb": 192, -"mbk": 6, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -541, -542, -543, -544, -545, -1595, -1596, -1597, -556, -198, -576, -577, -578, -579, -580, -581, -834, -835, -836, -837, -838 -] -}, -{ -"tb": 132, -"tbk": 4, -"tl": 302325327, -"mb": 132, -"mbk": 4, -"gb": 132, -"gbk": 4, -"eb": 0, -"ebk": 0, -"fs": [ -869, -870, -871, -872, -873, -874, -875, -876, -877, -878, -61, -62, -63, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 240, -"tbk": 3, -"tl": 8434, -"mb": 240, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -932, -933, -934, -935, -936, -937, -762, -763, -764, -765, -766, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 18, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1847, -1848, -1849, -1850, -1851, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 2630, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -1766, -546, -547, -548, -556, -198, -576, -577, -578, -579, -580, -581, -198, -199, -200, -201, -202 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -474, -475, -1482, -1483, -1484, -1485, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 75599921, -"mb": 16, -"mbk": 1, -"gb": 16, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -998, -999, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 3436, -"mb": 72, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -699, -700, -701, -702, -703, -704, -705, -706, -707, -708, -709, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 448, -"tbk": 6, -"tl": 1960, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -2656, -2657, -2658, -2659, -2660, -1595, -1596, -1597, -556, -198, -576, -577, -578, -579, -580, -581, -549, -550, -551, -552, -553 -] -}, -{ -"tb": 105, -"tbk": 2, -"tl": 95, -"mb": 70, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -1573, -1574, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576, -1577, -1578, -1579, -1580, -1581, -1582, -1656, -1657, -1658 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 178, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -61, -62, -63, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23 -] -}, -{ -"tb": 672, -"tbk": 3, -"tl": 35, -"mb": 384, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -326, -327, -328, -13, -14, -15, -16, -17, -18, -64 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1049, -1050, -1051, -1052, -1053, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92 -] -}, -{ -"tb": 80, -"tbk": 2, -"tl": 75579845, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -998, -999, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 121, -"tbk": 10, -"tl": 775109009, -"mb": 121, -"mbk": 10, -"gb": 121, -"gbk": 10, -"eb": 0, -"ebk": 0, -"fs": [ -47, -2098, -2099, -2100, -2101, -2102, -2103, -2104, -2782, -2783, -2784, -2785, -2786, -2787, -2788, -2789, -2790, -2791, -2792, -2787, -2116, -2117, -2118, -2119, -2120, -2121, -2122, -2123, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 1303, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -64 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -474, -475, -476, -477, -478, -479, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 1708, -"tbk": 30, -"tl": 225, -"mb": 112, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -255, -256, -257, -258, -259, -260, -261, -262, -263, -264, -265, -351, -352, -503, -504, -505, -506, -507, -508, -509, -510, -511, -512, -513, -514, -515, -516, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 544, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25 -] -}, -{ -"tb": 32, -"tbk": 2, -"tl": 4922, -"mb": 32, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1943, -1944, -1945, -1240, -1241, -1242, -1243, -1244, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 41, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1610, -1611, -1612, -1613, -1614, -1615, -130, -131, -132, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75570392, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1274, -1275, -1276, -1277, -1278, -1279, -1280, -1281, -1282, -1283, -1284, -1285, -1286, -1287, -1288, -1289, -377, -378, -379, -380, -381, -382, -383, -384, -385, -386, -387, -388, -389, -942, -391 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 10, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1290, -1291, -1292, -1293, -1294, -176, -177, -178, -179, -180, -181, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 112, -"tbk": 2, -"tl": 61494, -"mb": 112, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1348, -1349, -1350, -1351, -1352, -1353, -1354, -1355, -1356, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 75570215, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1542, -1543, -1544, -1545, -1546, -1547, -1548, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -941, -391 -] -}, -{ -"tb": 384, -"tbk": 2, -"tl": 3978, -"mb": 384, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -1561, -1562, -1563, -937, -762, -763, -764, -765, -766, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 3968, -"tbk": 5, -"tl": 201, -"mb": 2048, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -93, -94, -95, -96, -97, -98, -99, -100, -101, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -116 -] -}, -{ -"tb": 49, -"tbk": 1, -"tl": 2001, -"mb": 49, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -145, -146, -147, -148, -149, -150, -151, -152, -153, -154, -155, -156, -157, -158, -159, -160, -161, -162, -163, -164, -165, -166, -167, -168, -169, -170, -171, -172, -173, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 288, -"tbk": 1, -"tl": 857, -"mb": 288, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -1549, -1550, -1551, -1552, -1553, -1554, -1555, -629, -630, -631, -26 -] -}, -{ -"tb": 4, -"tbk": 1, -"tl": 75585205, -"mb": 4, -"mbk": 1, -"gb": 4, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1030, -1031, -1032, -1033, -1034, -1035, -1036, -1037, -1038, -1039, -1040, -61, -62, -63, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 4488, -"tbk": 6, -"tl": 75594048, -"mb": 1536, -"mbk": 1, -"gb": 1512, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1179, -1180, -1181, -1182, -1183, -1184, -1185, -1186, -130, -131, -132, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 10048, -"tbk": 257, -"tl": 19432124927, -"mb": 10048, -"mbk": 257, -"gb": 10048, -"gbk": 257, -"eb": 0, -"ebk": 0, -"fs": [ -528, -529, -530, -531, -532, -533, -534, -535, -536, -537, -130, -131, -132, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 352, -"tbk": 3, -"tl": 59, -"mb": 224, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -174, -175, -176, -177, -178, -179, -180, -181, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 191, -"tbk": 30, -"tl": 5620438, -"mb": 20, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -337, -338, -339, -340, -341, -342, -343, -344, -345, -346, -347, -348, -349, -350, -266, -267, -503, -504, -505, -506, -507, -508, -509, -510, -511, -512, -513, -514, -515, -516, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 30, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1290, -1291, -1292, -1293, -1294, -176, -177, -178, -179, -180, -181, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 112, -"tbk": 3, -"tl": 28, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -1972, -1973, -1974, -1975, -1976, -1977, -1978, -1979, -1980, -1981, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 38, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1167, -1168, -1169, -1170, -11, -12, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 248, -"tbk": 5, -"tl": 283, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -481, -482, -483, -484, -485, -486, -487, -488, -489, -490, -491, -492, -493, -494, -495, -496, -497, -498, -499, -500, -501, -502, -268, -269, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 512, -"tbk": 1, -"tl": 75599514, -"mb": 512, -"mbk": 1, -"gb": 512, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1225, -1226, -1227, -1228, -1229, -1230, -1231, -1232, -1233, -1234, -1235, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 75588764, -"mb": 16, -"mbk": 1, -"gb": 16, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1197, -1198, -1199, -1200, -1201, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 2354, -"mb": 72, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -699, -700, -701, -702, -1600, -1601, -1602, -1603, -1604, -1605, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 184, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92 -] -}, -{ -"tb": 512, -"tbk": 1, -"tl": 75571827, -"mb": 512, -"mbk": 1, -"gb": 512, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1225, -1226, -1227, -1228, -1229, -1230, -1231, -1232, -1233, -1234, -1235, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 4176, -"tbk": 6, -"tl": 75589366, -"mb": 1536, -"mbk": 1, -"gb": 1200, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1179, -1180, -1181, -1182, -1183, -1184, -1185, -1186, -130, -131, -132, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92 -] -}, -{ -"tb": 228, -"tbk": 1, -"tl": 28, -"mb": 228, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -57, -58, -59, -60, -130, -131, -132, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23 -] -}, -{ -"tb": 32, -"tbk": 2, -"tl": 4800, -"mb": 32, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1943, -1944, -1945, -1240, -1241, -1242, -1243, -1244, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 1765, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -75, -76, -77, -78, -79, -80, -81, -82, -83, -84, -85, -86, -87, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 308, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1370, -1371, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75570549, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -596, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -942, -391, -609, -610, -611, -612 -] -}, -{ -"tb": 85, -"tbk": 29, -"tl": 9848, -"mb": 85, -"mbk": 29, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -228, -229, -230, -231, -232, -233, -234, -235, -236, -237, -238, -239, -240, -241, -242, -243, -244, -2793, -2794, -2795, -2796, -2797, -2798, -2799, -250, -251, -252, -253, -254, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -474, -475, -1482, -1483, -1484, -1485, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 64, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -289, -290, -291, -292, -293, -294, -295, -296, -297, -130, -131, -132, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 561, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -861, -862, -863, -864, -865, -866, -867, -868, -556, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2548, -2549, -2550, -2551, -1054, -1055, -1171, -1172, -1054, -1055, -642, -643, -644, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 2000, -"tbk": 1, -"tl": 75579302, -"mb": 2000, -"mbk": 1, -"gb": 2000, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1259, -1260, -1261, -1262, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 384, -"tbk": 5, -"tl": 14295, -"mb": 320, -"mbk": 4, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -2235, -2236, -2237, -2238, -2239, -2240, -2241, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75571550, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -596, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -698, -391, -609, -610, -611, -612 -] -}, -{ -"tb": 448, -"tbk": 6, -"tl": 1260, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -2656, -2657, -2658, -2659, -2660, -1595, -1596, -1597, -556, -198, -576, -577, -578, -579, -580, -581, -834, -835, -836, -837, -838 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 2405, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1565, -1566, -1567, -561, -562, -563, -564, -565, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 197, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2060, -2061, -2062, -1750, -716, -717, -718, -719, -720, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 319, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -61, -62, -63, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 105, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2060, -2061, -2062, -1750, -716, -717, -718, -719, -720, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 568, -"tbk": 71, -"tl": 1131, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1061, -1062, -1063, -1064, -191, -192, -193, -194, -195, -196, -197, -198, -198, -199, -200, -201, -202, -128, -129, -130, -131, -132, -13, -14, -15 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 8028, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -2194, -2195, -2196, -2197, -2198, -2199, -2200, -2201, -2202, -172, -173, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 144, -"tbk": 1, -"tl": 75570136, -"mb": 144, -"mbk": 1, -"gb": 144, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -938, -939, -940, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -753, -391 -] -}, -{ -"tb": 144, -"tbk": 1, -"tl": 75570145, -"mb": 144, -"mbk": 1, -"gb": 144, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -938, -939, -940, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -753, -391 -] -}, -{ -"tb": 4, -"tbk": 1, -"tl": 75599947, -"mb": 4, -"mbk": 1, -"gb": 4, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1030, -1031, -1032, -1033, -1034, -1035, -1036, -1037, -1038, -1039, -1040, -130, -131, -132, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 2, -"tl": 3416, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2023, -2024, -2025, -705, -706, -707, -708, -709, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 168, -"tbk": 3, -"tl": 5046, -"mb": 168, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1348, -1349, -1350, -1351, -1352, -1353, -1354, -1355, -1356, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 312, -"tbk": 1, -"tl": 32, -"mb": 312, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -57, -58, -59, -60, -61, -62, -63, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92 -] -}, -{ -"tb": 168, -"tbk": 1, -"tl": 22, -"mb": 168, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2800, -2801, -2802, -2803, -2804, -2805, -2806, -2807, -2808, -2809, -2810, -1505, -1506, -2811, -2812, -2813, -2814, -2815, -2816, -2817, -2818, -2819, -2327, -2328, -2820, -2821, -2822, -2823, -2824, -2825, -2826 -] -}, -{ -"tb": 120, -"tbk": 1, -"tl": 1978, -"mb": 120, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1045, -1046, -1047, -1048, -716, -717, -718, -719, -720, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 568, -"tbk": 71, -"tl": 1232, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1061, -1062, -1063, -1064, -191, -576, -577, -578, -579, -580, -581, -198, -776, -777, -778, -576, -577, -578, -579, -580, -581, -198, -198, -199, -200, -201, -202 -] -}, -{ -"tb": 96, -"tbk": 2, -"tl": 61, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2827, -2828, -2829, -2830, -2831, -2832, -2449, -2450, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576 -] -}, -{ -"tb": 16000, -"tbk": 1, -"tl": 145, -"mb": 16000, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1956, -1957, -1958, -1959, -1960, -1961, -1962, -1963, -1964, -1965, -1966, -556, -828, -829, -830, -831, -832, -833, -199, -200, -201, -202, -128, -129, -61, -62, -63, -13, -14, -15, -16, -17, -18, -208, -209, -210 -] -}, -{ -"tb": 640, -"tbk": 1, -"tl": 0, -"mb": 640, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1637, -1638, -1639, -1640, -1641, -1642, -1643, -423, -424, -425, -426, -427, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 0, -"mb": 160, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1825, -1826, -1827, -1828, -1829, -1830, -1831, -1832, -1833, -1834, -1835, -1836, -1837, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 2, -"tbk": 1, -"tl": 39, -"mb": 2, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -299, -300, -301, -302, -303, -304, -305, -306, -307, -308, -309, -310, -311, -312, -61, -62, -63, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 3, -"tbk": 1, -"tl": 77515630, -"mb": 3, -"mbk": 1, -"gb": 3, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -228, -229, -230, -231, -232, -233, -234, -235, -236, -237, -238, -239, -240, -241, -242, -243, -244, -1065, -1066, -1067, -1068, -1069, -1070, -1071, -1072, -1195, -1196, -26 -] -}, -{ -"tb": 256, -"tbk": 8, -"tl": 999, -"mb": 64, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -541, -542, -543, -544, -545, -546, -547, -548, -556, -576, -577, -578, -579, -580, -581, -198, -198 -] -}, -{ -"tb": 5504, -"tbk": 20, -"tl": 2952, -"mb": 3328, -"mbk": 9, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -791, -792, -793, -794, -795, -796, -797, -266, -267, -731, -732, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 144, -"tbk": 1, -"tl": 77, -"mb": 144, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -428, -429, -430, -431, -432, -433, -434, -435, -436, -437, -438, -439, -440, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -474, -475, -476, -477, -478, -479, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 1463, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -1561, -1562, -1563, -937, -762, -763, -764, -765, -766, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 19, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -986, -987, -988, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 1798170, -"tbk": 200030, -"tl": 159117601276, -"mb": 197817, -"mbk": 20003, -"gb": 197817, -"gbk": 20003, -"eb": 0, -"ebk": 0, -"fs": [ -2833, -2834, -2835, -2836, -2837, -2838, -2839, -2840, -2841, -2842, -2843, -2844, -2845, -2846, -2845, -2847, -2848, -2849, -2850, -2851, -2852, -2853, -2854, -2855, -2856, -2857, -2858, -2859, -2860, -2861, -2862, -2863, -2864, -2865, -1883, -1217, -225, -226, -227, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 75581896, -"mb": 96, -"mbk": 1, -"gb": 96, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1218, -1219, -1220, -1221, -1222, -1223, -1224, -130, -131, -132, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 81, -"tbk": 10, -"tl": 775103944, -"mb": 81, -"mbk": 10, -"gb": 81, -"gbk": 10, -"eb": 0, -"ebk": 0, -"fs": [ -47, -2098, -2099, -2100, -2866, -2867, -2868, -2869, -2870, -2871, -2866, -2872, -2873, -2874, -2875, -2876, -2866, -2116, -2117, -2118, -2119, -2120, -2121, -2122, -2123, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 91, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -955, -956, -957, -958, -959, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 87, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -1757, -1758, -1759, -762, -763, -764, -765, -766, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 896, -"tbk": 1, -"tl": 124, -"mb": 896, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -710, -711, -712, -713, -714, -715, -716, -717, -718, -719, -720, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 36, -"tbk": 1, -"tl": 2754, -"mb": 36, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -145, -146, -147, -148, -149, -150, -151, -152, -153, -154, -155, -156, -157, -158, -159, -160, -161, -162, -163, -164, -165, -166, -167, -168, -169, -170, -171, -172, -173, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1903, -1904, -1905, -1906, -1907, -1908, -1909, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23 -] -}, -{ -"tb": 211, -"tbk": 10, -"tl": 1, -"mb": 22, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -337, -338, -339, -340, -341, -342, -343, -344, -345, -346, -347, -348, -349, -350, -351, -352, -503, -504, -505, -506, -507, -508, -509, -510, -511, -512, -513, -514, -515, -516, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 29, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1610, -1611, -1612, -1613, -1614, -1615, -61, -62, -63, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 76, -"tbk": 1, -"tl": 60, -"mb": 76, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -1103, -1104, -1105, -1106, -1107, -1108, -1109, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 1280, -"tbk": 2, -"tl": 2584, -"mb": 1280, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1637, -1638, -1639, -1640, -1641, -1642, -1643, -423, -424, -425, -426, -427, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 2, -"tbk": 1, -"tl": 37, -"mb": 2, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -299, -300, -301, -302, -303, -304, -305, -306, -307, -308, -309, -310, -311, -312, -61, -62, -63, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 75569980, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1542, -1543, -1544, -1545, -1546, -1547, -1548, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -753, -391 -] -}, -{ -"tb": 21, -"tbk": 9, -"tl": 616, -"mb": 10, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -721, -722, -723, -724, -725, -726, -727, -728, -729, -730, -138, -139, -140, -141, -142, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 15, -"tbk": 1, -"tl": 77515170, -"mb": 15, -"mbk": 1, -"gb": 15, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -2877, -2878, -2879, -2880, -2881, -2882, -2883, -2884, -2885, -2886, -2887, -2888, -2889, -2890, -2891, -2892, -2893, -2894, -2895, -2896, -2897, -2898, -2899, -2900, -2901, -2902, -26 -] -}, -{ -"tb": 108, -"tbk": 1, -"tl": 75570061, -"mb": 108, -"mbk": 1, -"gb": 108, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1088, -1089, -1090, -1091, -1092, -1093, -1094, -1095, -1096, -1097, -1098, -1099, -1100, -1101, -1102, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -753, -391 -] -}, -{ -"tb": 76, -"tbk": 1, -"tl": 31, -"mb": 76, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -57, -58, -59, -60, -130, -131, -132, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23 -] -}, -{ -"tb": 240, -"tbk": 3, -"tl": 0, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1263, -1264, -1265, -1266, -1267, -761, -762, -763, -764, -765, -766, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 2, -"tbk": 1, -"tl": 39, -"mb": 2, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -299, -300, -301, -302, -303, -304, -305, -306, -307, -308, -309, -310, -311, -312, -61, -62, -63, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 40, -"tbk": 1, -"tl": 75571810, -"mb": 40, -"mbk": 1, -"gb": 40, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1118, -1119, -1120, -1121, -1122, -1123, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 104, -"tbk": 1, -"tl": 10, -"mb": 104, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1295, -1296, -1297, -1298, -1299, -1300, -1301, -1302, -1303, -1304, -1305, -1306, -1307, -1308, -1309, -1310, -1311, -1312, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 10813520, -"tbk": 10, -"tl": 2019105, -"mb": 1081352, -"mbk": 1, -"gb": 1081352, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -2903, -2904, -2905, -2906, -2907, -2908, -2909, -2910, -2911, -2912, -1215, -1216, -1217, -225, -226, -227, -24, -25, -26 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 3296, -"mb": 72, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1529, -1530, -1531, -1532, -1533, -561, -562, -563, -564, -565, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 2, -"tl": 60955, -"mb": 96, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -857, -858, -859, -860, -762, -763, -764, -765, -766, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 3968, -"tbk": 5, -"tl": 128, -"mb": 2048, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -93, -94, -95, -96, -97, -98, -99, -100, -101, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -298 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 1642, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -1137, -1138, -1139, -1140, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 40, -"tbk": 2, -"tl": 75612680, -"mb": 32, -"mbk": 1, -"gb": 8, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -845, -846, -847, -848, -849, -850, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92 -] -}, -{ -"tb": 240, -"tbk": 10, -"tl": 2122056, -"mb": 24, -"mbk": 1, -"gb": 24, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -2913, -2914, -2915, -1883, -1217, -225, -226, -227, -24, -25, -26 -] -}, -{ -"tb": 40, -"tbk": 5, -"tl": 2518, -"mb": 40, -"mbk": 5, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -620, -621, -622, -623, -624, -625, -626, -627, -628, -1556, -1557, -1558, -1559, -1560, -26 -] -}, -{ -"tb": 135, -"tbk": 2, -"tl": 14, -"mb": 90, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -2916, -2917, -2918, -2919, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 40, -"tbk": 2, -"tl": 263, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1061, -1062, -1063, -1064, -556, -576, -577, -578, -579, -580, -581, -198, -199, -200, -201, -202, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18 -] -}, -{ -"tb": 162, -"tbk": 2, -"tl": 518, -"mb": 108, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -2920, -2921, -2922, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 55, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -1606, -1607, -1608, -1609, -130, -131, -132, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 144, -"tbk": 1, -"tl": 2397, -"mb": 144, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -557, -558, -559, -560, -561, -562, -563, -564, -565, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 120, -"tbk": 2, -"tl": 75574528, -"mb": 96, -"mbk": 1, -"gb": 24, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -613, -614, -615, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23 -] -}, -{ -"tb": 168, -"tbk": 2, -"tl": 151148962, -"mb": 168, -"mbk": 2, -"gb": 168, -"gbk": 2, -"eb": 0, -"ebk": 0, -"fs": [ -528, -529, -530, -531, -532, -533, -534, -535, -536, -537, -130, -131, -132, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -474, -475, -476, -477, -478, -479, -13, -14, -15, -16, -17, -18, -526, -527 -] -}, -{ -"tb": 6, -"tbk": 1, -"tl": 28, -"mb": 6, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -977, -978, -979, -980, -981, -982, -983, -984, -985, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 66, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -1606, -1607, -1608, -1609, -130, -131, -132, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 13, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -582, -583, -584, -585, -586, -61, -62, -63, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 448, -"tbk": 6, -"tl": 1311, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -2656, -2657, -2658, -2659, -2660, -1595, -1596, -1597, -549, -550, -551, -552, -553, -554, -555, -556, -198 -] -}, -{ -"tb": 400, -"tbk": 5, -"tl": 0, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -105, -106, -107, -108, -109, -110, -111, -112, -113, -114, -115, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 291, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2060, -2061, -2062, -1750, -716, -717, -718, -719, -720, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 188, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1370, -1371, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92 -] -}, -{ -"tb": 108, -"tbk": 1, -"tl": 75570429, -"mb": 108, -"mbk": 1, -"gb": 108, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1088, -1089, -1090, -1091, -1092, -1093, -1094, -1095, -1096, -1097, -1098, -1099, -1100, -1101, -1102, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -942, -391 -] -}, -{ -"tb": 512, -"tbk": 4, -"tl": 4764, -"mb": 320, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -2235, -2236, -2237, -2238, -2239, -2240, -2241, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 71, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -1606, -1607, -1608, -1609, -61, -62, -63, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -474, -475, -1482, -1483, -1484, -1485, -13, -14, -15, -16, -17, -18, -103, -104 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 3824, -"mb": 160, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1255, -1256, -1257, -1258, -937, -762, -763, -764, -765, -766, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 836, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -2194, -2195, -2196, -2197, -2198, -2199, -2200, -2201, -2202, -172, -173, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 31848, -"tbk": 9, -"tl": 75592048, -"mb": 12288, -"mbk": 1, -"gb": 7368, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1179, -1180, -1181, -1182, -1183, -1184, -1185, -1186, -61, -62, -63, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 4, -"tbk": 1, -"tl": 75600722, -"mb": 4, -"mbk": 1, -"gb": 4, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1030, -1031, -1032, -1033, -1034, -1035, -1036, -1037, -1038, -1039, -1040, -61, -62, -63, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 77514947, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -2171, -2172, -2173, -2174, -2175, -2923, -2924, -2925, -2926, -2927, -2928, -2929, -2719, -2720, -2721, -2722, -2723, -2724, -2725, -1027, -1028, -1029 -] -}, -{ -"tb": 28, -"tbk": 1, -"tl": 94, -"mb": 28, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -767, -768, -769, -770, -771, -772, -773, -61, -62, -63, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1583, -1584, -1585, -1586, -1587, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92 -] -}, -{ -"tb": 12, -"tbk": 1, -"tl": 75581846, -"mb": 12, -"mbk": 1, -"gb": 12, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -869, -870, -871, -872, -873, -874, -875, -876, -877, -878, -130, -131, -132, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 2798940, -"tbk": 100000, -"tl": 7650889609548, -"mb": 2798940, -"mbk": 100000, -"gb": 2798940, -"gbk": 100000, -"eb": 0, -"ebk": 0, -"fs": [ -2930, -2931, -2932, -2933, -2934, -2935, -2936, -2937, -2938, -2939, -2940, -2941, -2942, -2943, -504, -505, -506, -507, -508, -509, -510, -511, -512, -513, -514, -515, -516, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 28, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1610, -1611, -1612, -1613, -1614, -1615, -61, -62, -63, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 624, -"tbk": 3, -"tl": 56, -"mb": 384, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2229, -2230, -110, -111, -112, -113, -114, -115, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 9, -"tbk": 2, -"tl": 153, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -1573, -1574, -1577, -1578, -1579, -1580, -1581, -1582, -1656, -1657, -1658, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 5896, -"tbk": 1, -"tl": 72902785, -"mb": 5896, -"mbk": 1, -"gb": 5896, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -750, -751, -752, -1399, -1400, -1401, -1402, -1403, -1404, -1405, -1406, -457, -458, -459, -460, -461, -462, -463, -464, -465, -223 -] -}, -{ -"tb": 37, -"tbk": 2, -"tl": 155033163, -"mb": 37, -"mbk": 2, -"gb": 37, -"gbk": 2, -"eb": 0, -"ebk": 0, -"fs": [ -2944, -2945, -2946, -2947, -2948, -2949, -2950, -2951, -2952, -2953, -2954, -1991 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 1295, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23 -] -}, -{ -"tb": 96, -"tbk": 3, -"tl": 54, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -986, -987, -988, -748, -749, -746, -747, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 9, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1167, -1168, -1169, -1170, -11, -12, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 2, -"tl": 416, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -1766, -546, -547, -548, -556, -576, -577, -578, -579, -580, -581, -834, -835, -836, -837, -838, -554, -555, -556 -] -}, -{ -"tb": 624, -"tbk": 3, -"tl": 9, -"mb": 384, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2229, -2230, -110, -111, -112, -113, -114, -115, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 5896, -"tbk": 1, -"tl": 72902804, -"mb": 5896, -"mbk": 1, -"gb": 5896, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -938, -939, -940, -1399, -1400, -1401, -1402, -1403, -1404, -1405, -1406, -457, -458, -459, -460, -461, -462, -463, -464, -465, -223 -] -}, -{ -"tb": 128, -"tbk": 1, -"tl": 99, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -989, -990, -991, -992, -993, -994, -995, -996, -997, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -474, -475, -476, -477, -478, -479, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 312, -"tbk": 1, -"tl": 2973, -"mb": 312, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -575, -547, -548, -191, -198, -192, -193, -194, -195, -196, -197, -198, -199, -200, -201, -202, -128, -129 -] -}, -{ -"tb": 896, -"tbk": 1, -"tl": 397, -"mb": 896, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -710, -711, -712, -713, -714, -715, -716, -717, -718, -719, -720, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 144, -"tbk": 1, -"tl": 10, -"mb": 144, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1295, -1296, -1297, -1298, -1299, -1300, -1301, -1302, -1303, -1304, -1305, -1306, -1307, -1308, -1309, -1310, -1311, -1312, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 960, -"tbk": 2, -"tl": 354, -"mb": 640, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -27, -28, -29, -30, -31, -32, -33, -34, -35, -36, -34, -37, -34, -38, -39, -2955, -2956, -2957, -914, -915, -916, -917, -918, -919, -920, -921, -922, -923, -924, -925, -926, -927, -928, -929, -930, -931, -26 -] -}, -{ -"tb": 4024, -"tbk": 8, -"tl": 232542504, -"mb": 3184, -"mbk": 2, -"gb": 2400, -"gbk": 3, -"eb": 2400, -"ebk": 3, -"fs": [ -1767, -1768, -1769, -1770, -1771, -1772, -1773, -1774, -1775, -1776, -1777, -1778, -2958, -2959, -2960, -2961, -2962, -2963, -2964, -2965, -2962, -2963, -2966, -2967, -2968, -2969, -2970, -2971, -2972, -898, -899, -900, -901, -902, -903, -904, -905, -906, -907, -908, -909, -910, -911, -912, -913, -914, -915, -916, -917, -918, -919, -920 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 4785, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -526, -527 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 28, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1610, -1611, -1612, -1613, -1614, -1615, -61, -62, -63, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 512, -"tbk": 4, -"tl": 5143, -"mb": 320, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -2235, -2236, -2237, -2238, -2239, -2240, -2241, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 29, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1610, -1611, -1612, -1613, -1614, -1615, -61, -62, -63, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 37, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1167, -1168, -1169, -1170, -11, -12, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 4231491, -"tbk": 200039, -"tl": 9550689781, -"mb": 300060, -"mbk": 10001, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -1659, -1660, -1661, -1662, -1663, -1664, -1665, -1666, -1667, -1668, -1669, -1670, -2973, -2974, -2975, -2976, -2977, -2978, -2979, -2980, -2981, -2978, -2982, -2983, -2984, -1575, -1576, -1575, -1576, -1577, -1578, -1579, -1580, -1581, -1582, -2411, -2412, -504, -505, -506, -507, -508, -509, -510, -511, -512, -513, -514, -515, -516, -270 -] -}, -{ -"tb": 10, -"tbk": 1, -"tl": 1762, -"mb": 10, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -145, -146, -147, -148, -149, -150, -151, -152, -153, -154, -155, -156, -157, -158, -159, -160, -161, -162, -163, -164, -165, -166, -167, -168, -169, -170, -171, -172, -173, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1110, -1111, -1112, -1113, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 38, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2507, -2508, -2509, -2510, -642, -643, -644, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 224, -"tbk": 1, -"tl": 29, -"mb": 224, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -57, -58, -59, -60, -130, -131, -132, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25 -] -}, -{ -"tb": 4, -"tbk": 1, -"tl": 75599697, -"mb": 4, -"mbk": 1, -"gb": 4, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1030, -1031, -1032, -1033, -1034, -1035, -1036, -1037, -1038, -1039, -1040, -61, -62, -63, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 8064, -"tbk": 6, -"tl": 154, -"mb": 4096, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -93, -94, -95, -96, -97, -98, -99, -100, -101, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -116 -] -}, -{ -"tb": 424, -"tbk": 1, -"tl": 29, -"mb": 424, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -57, -58, -59, -60, -61, -62, -63, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23 -] -}, -{ -"tb": 512, -"tbk": 1, -"tl": 75584989, -"mb": 512, -"mbk": 1, -"gb": 512, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1225, -1226, -1227, -1228, -1229, -1230, -1231, -1232, -1233, -1234, -1235, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 86016, -"tbk": 8, -"tl": 75589231, -"mb": 32768, -"mbk": 1, -"gb": 20992, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -733, -734, -735, -736, -737, -738, -739, -740, -741, -742, -743, -744, -745, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 168, -"tbk": 1, -"tl": 77514972, -"mb": 168, -"mbk": 1, -"gb": 168, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -2800, -2801, -2802, -2803, -2985, -2986, -2987, -26 -] -}, -{ -"tb": 135, -"tbk": 2, -"tl": 44, -"mb": 90, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -2916, -2917, -2988, -1421, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 1696, -"tbk": 26, -"tl": 15146, -"mb": 1024, -"mbk": 12, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -2656, -2657, -2658, -2659, -2660, -1595, -1596, -1597, -191, -576, -577, -578, -579, -580, -581, -198, -776, -777, -778 -] -}, -{ -"tb": 37, -"tbk": 1, -"tl": 3806, -"mb": 37, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -145, -146, -147, -148, -149, -150, -151, -152, -153, -154, -155, -156, -157, -158, -159, -160, -161, -162, -163, -164, -165, -166, -167, -168, -169, -170, -171, -172, -173, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 7, -"tbk": 1, -"tl": 38, -"mb": 7, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -960, -961, -962, -963, -964, -965, -966, -967, -61, -62, -63, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 17, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -2552, -2553, -2554, -2555, -2556, -2557, -2558, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 10, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -582, -583, -584, -585, -586, -61, -62, -63, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 5600, -"tbk": 175, -"tl": 646935, -"mb": 1920, -"mbk": 60, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -541, -542, -543, -544, -545, -1595, -1596, -1597, -191, -198, -192, -193, -194, -195, -196, -197, -198 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 75591410, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -278, -279, -280, -281, -282, -283, -284, -285, -286, -287, -288, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 1280, -"tbk": 2, -"tl": 2519, -"mb": 1280, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1637, -1638, -1639, -1640, -1641, -1642, -1643, -423, -424, -425, -426, -427, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 8688, -"tbk": 7, -"tl": 75585088, -"mb": 3072, -"mbk": 1, -"gb": 2640, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1179, -1180, -1181, -1182, -1183, -1184, -1185, -1186, -61, -62, -63, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 7441, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -1041, -1042, -1043, -1044, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 58, -"tbk": 1, -"tl": 39, -"mb": 58, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -960, -961, -962, -963, -964, -965, -966, -967, -130, -131, -132, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 480, -"tbk": 2, -"tl": 9, -"mb": 320, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1825, -1826, -1827, -1828, -1829, -1830, -1831, -1832, -1833, -1834, -1835, -1836, -1837, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 384, -"tbk": 3, -"tl": 10472, -"mb": 384, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1236, -1237, -1238, -1239, -1240, -1241, -1242, -1243, -1244, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 6, -"tl": 25, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1000, -1001, -1002, -1003, -1004, -556, -828, -829, -830, -831, -832, -833, -834, -835, -836, -837, -838, -554, -555, -839, -840, -841, -842, -843, -844, -199, -200, -201, -202, -128, -129 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -474, -475, -476, -477, -478, -479, -13, -14, -15, -16, -17, -18, -103, -104 -] -}, -{ -"tb": 5896, -"tbk": 1, -"tl": 19, -"mb": 5896, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -57, -58, -59, -60, -61, -62, -63, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92 -] -}, -{ -"tb": 141, -"tbk": 10, -"tl": 1010413, -"mb": 15, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2436, -2437, -2438, -2439, -2440, -2441, -2442, -2443, -2444, -2445, -2446, -2447, -2448, -2449, -2450, -1575, -1576, -1575, -1576, -1577, -1578, -1579, -1580, -1581, -1582, -2411, -2412, -504, -505, -506, -507, -508, -509, -510, -511, -512, -513, -514, -515, -516, -270, -271, -272 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 2414, -"mb": 72, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -699, -700, -701, -702, -1202, -561, -562, -563, -564, -565, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 16000, -"tbk": 1, -"tl": 307, -"mb": 16000, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1956, -1957, -1958, -1959, -1960, -1961, -1962, -1963, -1964, -1965, -1966, -556, -828, -829, -830, -831, -832, -833, -199, -200, -201, -202, -128, -129, -61, -62, -63, -13, -14, -15, -16, -17, -18, -103, -104 -] -}, -{ -"tb": 3968, -"tbk": 5, -"tl": 75570904, -"mb": 2048, -"mbk": 1, -"gb": 2048, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -683, -684, -685, -686, -687, -688, -689, -690, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -390, -391 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -474, -475, -1482, -1483, -1484, -1485, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 7, -"tbk": 1, -"tl": 75575463, -"mb": 7, -"mbk": 1, -"gb": 7, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -654, -655, -656, -657, -658, -659, -660, -661, -662, -663, -664, -665, -666, -667, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 316, -"tbk": 1, -"tl": 75570288, -"mb": 316, -"mbk": 1, -"gb": 316, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -938, -939, -940, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -941, -391 -] -}, -{ -"tb": 57, -"tbk": 2, -"tl": 139, -"mb": 38, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -1573, -1574, -1575, -1576, -1575, -1576, -1575, -1576, -1577, -1578, -1579, -1580, -1581, -1582, -2639, -2640, -2641, -270, -271, -272 -] -}, -{ -"tb": 400, -"tbk": 1, -"tl": 75577100, -"mb": 400, -"mbk": 1, -"gb": 400, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -879, -880, -881, -882, -883, -884, -130, -131, -132, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 228, -"tbk": 1, -"tl": 65, -"mb": 228, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -1103, -1104, -1105, -1106, -1107, -1108, -1109, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 2296, -"mb": 72, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -699, -700, -701, -702, -1600, -1601, -1602, -1603, -1604, -1605, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 56, -"tbk": 1, -"tl": 7917, -"mb": 56, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1348, -1349, -1350, -1351, -1352, -1353, -1354, -1355, -1356, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 480, -"tbk": 2, -"tl": 395, -"mb": 320, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1825, -1826, -1827, -1992, -1993, -1994, -1995, -1996, -1997, -1998, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 40, -"tbk": 1, -"tl": 75591555, -"mb": 40, -"mbk": 1, -"gb": 40, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1118, -1119, -1120, -1121, -1122, -1123, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1903, -1904, -1905, -1906, -1907, -1908, -1909, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 10, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -582, -583, -584, -585, -586, -61, -62, -63, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 1352, -"tbk": 1, -"tl": 72902887, -"mb": 1352, -"mbk": 1, -"gb": 1352, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -750, -751, -752, -449, -450, -451, -452, -453, -454, -455, -456, -457, -458, -459, -460, -461, -462, -463, -464, -465, -223 -] -}, -{ -"tb": 512, -"tbk": 1, -"tl": 75573901, -"mb": 512, -"mbk": 1, -"gb": 512, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1225, -1226, -1227, -1228, -1229, -1230, -1231, -1232, -1233, -1234, -1235, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 11, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -582, -583, -584, -585, -586, -130, -131, -132, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2548, -2549, -2550, -2551, -748, -749, -1171, -1172, -1114, -1115, -1116, -1117, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 1448, -"tbk": 1, -"tl": 75599507, -"mb": 1448, -"mbk": 1, -"gb": 1448, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1268, -1269, -1270, -1271, -1272, -1273, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75600103, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1520, -1521, -1522, -1523, -1524, -1525, -1526, -1527, -1528, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -474, -475, -1482, -1483, -1484, -1485, -13, -14, -15, -16, -17, -18, -64 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 1286, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -332, -333, -334, -335, -336, -199, -200, -201, -202, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -64 -] -}, -{ -"tb": 240, -"tbk": 2, -"tl": 75572244, -"mb": 192, -"mbk": 1, -"gb": 48, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -851, -852, -853, -854, -855, -856, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25 -] -}, -{ -"tb": 20, -"tbk": 1, -"tl": 28, -"mb": 20, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -57, -58, -59, -60, -61, -62, -63, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92 -] -}, -{ -"tb": 557, -"tbk": 2, -"tl": 77514787, -"mb": 512, -"mbk": 1, -"gb": 45, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -2989, -2990, -2991, -2992, -2993, -2994, -2995, -2996, -2997, -2998, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 0, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2999, -3000, -3001, -914, -915, -916, -917, -918, -919, -920, -921, -922, -923, -924, -925, -926, -927, -928, -929, -930, -931, -26 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 20324, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -861, -862, -863, -864, -865, -866, -867, -868, -556, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 75612670, -"mb": 96, -"mbk": 1, -"gb": 96, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1218, -1219, -1220, -1221, -1222, -1223, -1224, -130, -131, -132, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 6, -"tl": 509, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1061, -1062, -1063, -1064, -556, -198, -576, -577, -578, -579, -580, -581, -549, -550, -551, -552, -553, -554, -555, -198, -576, -577, -578, -579, -580, -581, -198 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 36, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -3002, -3003, -3004, -762, -763, -764, -765, -766, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 2, -"tbk": 1, -"tl": 38, -"mb": 2, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -299, -300, -301, -302, -303, -304, -305, -306, -307, -308, -309, -310, -311, -312, -130, -131, -132, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 8, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -582, -583, -584, -585, -586, -61, -62, -63, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 1600242, -"tbk": 200030, -"tl": 3822849, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -1313, -1314, -3005, -3006, -3007, -3008, -3009, -3010, -3011, -3012, -3013, -223, -224, -225, -226, -227, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 19, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -203, -204, -205, -206, -207, -110, -111, -112, -113, -114, -115, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 3996340, -"tbk": 400060, -"tl": 529944970328, -"mb": 435634, -"mbk": 40006, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -3014, -3015, -3016, -3017, -3018, -3019, -3020, -3021, -3022, -3023, -3024, -3025, -3026, -3027, -390, -391, -609, -610, -611, -612, -24, -25, -26 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 135, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2300, -2301, -2302, -2303, -1750, -716, -717, -718, -719, -720, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 232, -"tbk": 1, -"tl": 130, -"mb": 232, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -767, -768, -769, -770, -771, -772, -773, -130, -131, -132, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 1448, -"tbk": 1, -"tl": 75584984, -"mb": 1448, -"mbk": 1, -"gb": 1448, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1268, -1269, -1270, -1271, -1272, -1273, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 18, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1847, -1848, -1849, -1850, -1851, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25 -] -}, -{ -"tb": 96, -"tbk": 2, -"tl": 60899, -"mb": 96, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1616, -1617, -1618, -1619, -762, -763, -764, -765, -766, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 440, -"tbk": 1, -"tl": 75571494, -"mb": 440, -"mbk": 1, -"gb": 440, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -750, -751, -752, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -698, -391 -] -}, -{ -"tb": 40, -"tbk": 1, -"tl": 38, -"mb": 40, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -960, -961, -962, -963, -964, -965, -966, -967, -130, -131, -132, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 4191, -"mb": 160, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -779, -780, -781, -782, -783, -784, -762, -763, -764, -765, -766, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 75575625, -"mb": 80, -"mbk": 1, -"gb": 80, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1588, -1589, -1590, -1591, -1592, -1593, -1594, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 0, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1263, -1264, -1265, -1266, -1267, -761, -762, -763, -764, -765, -766, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 1228, -"tbk": 1, -"tl": 19, -"mb": 1228, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -57, -58, -59, -60, -61, -62, -63, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 16009600, -"tbk": 100020, -"tl": 132462259532, -"mb": 1600480, -"mbk": 10000, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -3028, -3029, -3030, -3031, -3032, -3033, -390, -391, -609, -610, -611, -612, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 34, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 75573201, -"mb": 80, -"mbk": 1, -"gb": 80, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -65, -66, -67, -68, -69, -70, -71, -72, -73, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 8000000, -"tbk": 100000, -"tl": 9850428, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2586, -2587, -2588, -2589, -2590, -2591, -2592, -2593, -2594, -2595, -2596, -2597, -390, -391, -609, -610, -611, -612, -24, -25, -26 -] -}, -{ -"tb": 48, -"tbk": 3, -"tl": 10418, -"mb": 48, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1565, -1566, -1567, -561, -562, -563, -564, -565, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32000, -"tbk": 2, -"tl": 612, -"mb": 16000, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1956, -1957, -1958, -1959, -1960, -1961, -1962, -1963, -1964, -1965, -1966, -556, -828, -829, -830, -831, -832, -833, -549, -550, -551, -552, -553, -554, -555, -839, -840, -841, -842, -843, -844, -199, -200, -201, -202, -128, -129, -61, -62, -63 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -596, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -942 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 3261, -"mb": 72, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -699, -700, -701, -702, -1600, -1601, -1602, -1603, -1604, -1605, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 128, -"tbk": 1, -"tl": 758, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1236, -1237, -1238, -1239, -1946, -1947, -1948, -1949, -1950, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 400, -"tbk": 1, -"tl": 75599829, -"mb": 400, -"mbk": 1, -"gb": 400, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -879, -880, -881, -882, -883, -884, -130, -131, -132, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 28, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -3002, -3003, -3004, -762, -763, -764, -765, -766, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 341, -"tbk": 1, -"tl": 42, -"mb": 341, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -960, -961, -962, -963, -964, -965, -966, -967, -130, -131, -132, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 1853, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -1041, -1042, -1043, -1044, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 20971450, -"tbk": 190, -"tl": 68535, -"mb": 1048576, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -3034, -3035, -3036, -3037, -3038, -3039, -3040, -3041, -3042, -1217, -225, -226, -227, -24, -25, -26 -] -}, -{ -"tb": 77, -"tbk": 3, -"tl": 515, -"mb": 46, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -2451, -2452, -3043, -3044, -3045, -3046, -3047, -3048, -3049, -3050, -3051, -3052, -3053, -3054, -3055, -3056, -3057, -3058, -3059, -3060, -3061, -921, -922, -923, -924, -925, -926, -927, -928, -929, -930, -931, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 19, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -986, -987, -988, -1054, -1055, -642, -643, -644, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 168, -"tbk": 1, -"tl": 1324, -"mb": 168, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2800, -2801, -2802, -2803, -3062, -3063, -3064, -3065, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 18, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -359, -360, -361, -362, -363, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 66, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -1606, -1607, -1608, -1609, -130, -131, -132, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 40, -"tbk": 2, -"tl": 75581905, -"mb": 32, -"mbk": 1, -"gb": 8, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -845, -846, -847, -848, -849, -850, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 75573186, -"mb": 80, -"mbk": 1, -"gb": 80, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1588, -1589, -1590, -1591, -1592, -1593, -1594, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 49487280, -"tbk": 100000, -"tl": 14918147, -"mb": 519, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -2185, -2186, -2187, -2188, -2189, -2190, -2191, -3066, -3067, -609, -610, -611, -612, -24, -25, -26 -] -}, -{ -"tb": 512, -"tbk": 1, -"tl": 75600429, -"mb": 512, -"mbk": 1, -"gb": 512, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1225, -1226, -1227, -1228, -1229, -1230, -1231, -1232, -1233, -1234, -1235, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 19, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -359, -360, -361, -362, -363, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 72902745, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -596, -448, -1399, -1400, -1401, -1402, -1403, -1404, -1405, -1406, -457, -458, -459, -460, -461, -462, -463, -464, -465, -223, -224 -] -}, -{ -"tb": 192, -"tbk": 4, -"tl": 11352, -"mb": 192, -"mbk": 4, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1616, -1617, -1618, -1619, -762, -763, -764, -765, -766, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 252, -"tbk": 1, -"tl": 32, -"mb": 252, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -57, -58, -59, -60, -130, -131, -132, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 448, -"tbk": 3, -"tl": 75571044, -"mb": 256, -"mbk": 1, -"gb": 256, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1542, -1543, -1544, -1545, -1546, -1547, -1548, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -390, -391 -] -}, -{ -"tb": 300, -"tbk": 1, -"tl": 75570052, -"mb": 300, -"mbk": 1, -"gb": 300, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -938, -939, -940, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -753, -391 -] -}, -{ -"tb": 560, -"tbk": 15, -"tl": 9855, -"mb": 128, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -824, -825, -826, -827, -556, -828, -829, -830, -831, -832, -833, -199, -200, -201, -202, -128, -129, -61, -62, -63 -] -}, -{ -"tb": 120, -"tbk": 2, -"tl": 75577196, -"mb": 96, -"mbk": 1, -"gb": 24, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -613, -614, -615, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23 -] -}, -{ -"tb": 192, -"tbk": 3, -"tl": 49, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -2552, -2553, -2554, -2555, -2556, -2557, -2558, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 528, -"tbk": 3, -"tl": 20, -"mb": 448, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -174, -175, -176, -177, -178, -179, -180, -181, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 200, -"tbk": 1, -"tl": 19, -"mb": 200, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -57, -58, -59, -60, -130, -131, -132, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92 -] -}, -{ -"tb": 320, -"tbk": 1, -"tl": 483, -"mb": 320, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -27, -28, -29, -30, -31, -32, -33, -34, -35, -36, -34, -37, -34, -38, -39, -3068, -3069, -3070, -921, -922, -923, -924, -925, -926, -927, -928, -929, -930, -931, -26 -] -}, -{ -"tb": 332, -"tbk": 1, -"tl": 104, -"mb": 332, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -767, -768, -769, -770, -771, -772, -773, -61, -62, -63, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -2271, -2272, -2491, -2492, -2493, -2494, -2495, -2496, -2497, -2498, -2499, -2500, -761, -762, -763, -764, -765, -766, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 76, -"tbk": 1, -"tl": 75570585, -"mb": 76, -"mbk": 1, -"gb": 76, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -750, -751, -752, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -942, -391 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 126, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2297, -2298, -2299, -1750, -716, -717, -718, -719, -720, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 25, -"tbk": 3, -"tl": 6319, -"mb": 25, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1339, -1340, -1341, -1342, -1343, -1344, -1345, -1346, -1347, -937, -762, -763, -764, -765, -766, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 216, -"tbk": 1, -"tl": 30750, -"mb": 216, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1187, -1188, -1189, -1190, -1191, -1192, -1193, -1194, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 1, -"tbk": 1, -"tl": 73, -"mb": 1, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -721, -722, -723, -724, -725, -726, -727, -728, -729, -730, -138, -139, -140, -141, -142, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 288, -"tbk": 1, -"tl": 77515704, -"mb": 288, -"mbk": 1, -"gb": 288, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -1549, -1550, -1551, -1552, -1553, -1554, -1555, -2758, -2759, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 0, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -2242, -2243, -2244, -561, -562, -563, -564, -565, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 568, -"tbk": 1, -"tl": 248, -"mb": 568, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2373, -2374, -2375, -2376, -2377, -2378, -2379, -2380, -2381, -2382, -2383, -2384, -1436, -1424, -1425, -1426, -1427, -1428, -1429, -1430, -1431, -1432, -1433, -1434, -1435, -1436, -1437, -1438, -1439, -1440, -1441, -1442, -1443, -1444, -1445, -1446, -1447, -1448, -1449, -1450, -1451, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 22784, -"tbk": 7, -"tl": 75574308, -"mb": 8192, -"mbk": 1, -"gb": 6656, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -733, -734, -735, -736, -737, -738, -739, -740, -741, -742, -743, -744, -745, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 96, -"tbk": 2, -"tl": 189, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1746, -1747, -1748, -1749, -1750, -716, -717, -718, -719, -720, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 2002, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -1041, -1042, -1043, -1044, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 1448, -"tbk": 1, -"tl": 75573896, -"mb": 1448, -"mbk": 1, -"gb": 1448, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1268, -1269, -1270, -1271, -1272, -1273, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 164, -"tbk": 1, -"tl": 11, -"mb": 164, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1295, -1296, -1297, -1298, -1299, -1300, -1301, -1302, -1303, -1304, -1305, -1306, -1307, -1308, -1309, -1310, -1311, -1312, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 400, -"tbk": 1, -"tl": 75588848, -"mb": 400, -"mbk": 1, -"gb": 400, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -879, -880, -881, -882, -883, -884, -61, -62, -63, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 448, -"tbk": 6, -"tl": 515, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -2656, -2657, -2658, -2659, -2660, -1595, -1596, -1597, -556, -198, -576, -577, -578, -579, -580, -581, -1568, -1569, -1570, -1571, -1572 -] -}, -{ -"tb": 7200000, -"tbk": 100000, -"tl": 531413356848, -"mb": 720000, -"mbk": 10000, -"gb": 720000, -"gbk": 10000, -"eb": 0, -"ebk": 0, -"fs": [ -3071, -3072, -3073, -3074, -3075, -3076, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 77515729, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -2171, -2172, -2173, -2174, -2175, -3077, -3078, -3079, -3080, -3081, -3082, -3083, -3084, -26 -] -}, -{ -"tb": 212, -"tbk": 1, -"tl": 75571296, -"mb": 212, -"mbk": 1, -"gb": 212, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -750, -751, -752, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -390, -391 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1903, -1904, -1905, -1906, -1907, -1908, -1909, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 1344, -"tbk": 3, -"tl": 674, -"mb": 768, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -946, -947, -948, -1760, -1761, -1762, -1763, -1764, -1765, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 58, -"tbk": 1, -"tl": 40, -"mb": 58, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -960, -961, -962, -963, -964, -965, -966, -967, -130, -131, -132, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 1440, -"tbk": 7, -"tl": 11, -"mb": 320, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -3085, -3086, -3087, -3088, -3089, -3090, -3091, -3092, -3093, -3094, -3095, -907, -908, -909, -910, -911, -912, -913, -914, -915, -916, -917, -918, -919, -920, -921, -922, -923, -924, -925, -926, -927, -928, -929, -930, -931, -26 -] -}, -{ -"tb": 56, -"tbk": 1, -"tl": 75584786, -"mb": 56, -"mbk": 1, -"gb": 56, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -278, -279, -280, -281, -282, -283, -284, -285, -286, -287, -288, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 42, -"tbk": 3, -"tl": 165, -"mb": 24, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -1573, -1574, -1575, -1576, -1577, -1578, -1579, -1580, -1581, -1582, -2639, -2640, -2641, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 336, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -861, -862, -863, -864, -865, -866, -867, -868, -556, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 1390, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -1561, -1562, -1563, -937, -762, -763, -764, -765, -766, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 1342, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1616, -1617, -1618, -1619, -762, -763, -764, -765, -766, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 212, -"tbk": 1, -"tl": 75571305, -"mb": 212, -"mbk": 1, -"gb": 212, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -938, -939, -940, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -390, -391 -] -}, -{ -"tb": 1448, -"tbk": 1, -"tl": 75579282, -"mb": 1448, -"mbk": 1, -"gb": 1448, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1268, -1269, -1270, -1271, -1272, -1273, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 2389, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -1137, -1138, -1139, -1140, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 42, -"tbk": 3, -"tl": 141, -"mb": 24, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -1573, -1574, -1575, -1576, -1577, -1578, -1579, -1580, -1581, -1582, -1656, -1657, -1658, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 77515128, -"mb": 48, -"mbk": 1, -"gb": 48, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -3096, -3097, -3098, -3099, -3100, -3101, -3102, -3103, -3104, -26 -] -}, -{ -"tb": 300, -"tbk": 1, -"tl": 75570034, -"mb": 300, -"mbk": 1, -"gb": 300, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -750, -751, -752, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -753, -391 -] -}, -{ -"tb": 96, -"tbk": 3, -"tl": 54, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -986, -987, -988, -748, -749, -746, -747, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23 -] -}, -{ -"tb": 24, -"tbk": 2, -"tl": 75609893, -"mb": 16, -"mbk": 1, -"gb": 8, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -517, -518, -519, -520, -521, -522, -523, -524, -525, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 4248, -"tbk": 6, -"tl": 75581797, -"mb": 1536, -"mbk": 1, -"gb": 1272, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1179, -1180, -1181, -1182, -1183, -1184, -1185, -1186, -130, -131, -132, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 11, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -582, -583, -584, -585, -586, -130, -131, -132, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 1, -"tbk": 1, -"tl": 7582, -"mb": 1, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1339, -1340, -1341, -1342, -1343, -1344, -1345, -1346, -1347, -937, -762, -763, -764, -765, -766, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 400, -"tbk": 1, -"tl": 75581788, -"mb": 400, -"mbk": 1, -"gb": 400, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -879, -880, -881, -882, -883, -884, -130, -131, -132, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 6, -"tl": 527, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1061, -1062, -1063, -1064, -556, -576, -577, -578, -579, -580, -581, -834, -835, -836, -837, -838, -554, -555, -556, -198, -576, -577, -578, -579, -580, -581, -198 -] -}, -{ -"tb": 256, -"tbk": 2, -"tl": 1400, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -182, -183, -184, -185, -186, -187, -188, -189, -190, -556, -576, -577, -578, -579, -580, -581, -198, -198, -199, -200, -201, -202 -] -}, -{ -"tb": 1896, -"tbk": 5, -"tl": 75579758, -"mb": 768, -"mbk": 1, -"gb": 456, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1179, -1180, -1181, -1182, -1183, -1184, -1185, -1186, -130, -131, -132, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 310, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1370, -1371, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 56, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -1606, -1607, -1608, -1609, -61, -62, -63, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75570168, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1274, -1275, -1276, -1277, -1278, -1279, -1280, -1281, -1282, -1283, -1284, -1285, -1286, -1287, -1288, -1289, -377, -378, -379, -380, -381, -382, -383, -384, -385, -386, -387, -388, -389, -941, -391 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 65, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -289, -290, -291, -292, -293, -294, -295, -296, -297, -130, -131, -132, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 3, -"tbk": 1, -"tl": 77515658, -"mb": 3, -"mbk": 1, -"gb": 3, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -228, -229, -230, -231, -232, -233, -234, -235, -236, -237, -238, -239, -240, -241, -242, -243, -244, -1838, -1839, -1840, -1841, -1842, -1843, -1195, -1196, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 242, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1386, -1387, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 18, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1847, -1848, -1849, -1850, -1851, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 2008, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -2194, -2195, -2196, -2197, -2198, -2199, -2200, -2201, -2202, -172, -173, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 200, -"tbk": 1, -"tl": 63, -"mb": 200, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -1103, -1104, -1105, -1106, -1107, -1108, -1109, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 1344, -"tbk": 3, -"tl": 196, -"mb": 768, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -946, -947, -948, -3105, -3106, -3107, -3108, -3109, -3110, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 192, -"tbk": 2, -"tl": 556, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -678, -679, -680, -681, -682, -199, -200, -201, -202, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -74 -] -}, -{ -"tb": 96, -"tbk": 2, -"tl": 4122, -"mb": 96, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -857, -858, -859, -860, -762, -763, -764, -765, -766, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 76, -"tbk": 1, -"tl": 75570603, -"mb": 76, -"mbk": 1, -"gb": 76, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -938, -939, -940, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -942, -391 -] -}, -{ -"tb": 216, -"tbk": 1, -"tl": 2458, -"mb": 216, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1187, -1188, -1189, -1190, -1191, -1192, -1193, -1194, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 18, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -986, -987, -988, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 320, -"tbk": 4, -"tl": 10857, -"mb": 320, -"mbk": 4, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1255, -1256, -1257, -1258, -937, -762, -763, -764, -765, -766, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 40, -"tbk": 2, -"tl": 75589478, -"mb": 32, -"mbk": 1, -"gb": 8, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -845, -846, -847, -848, -849, -850, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 337, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -861, -862, -863, -864, -865, -866, -867, -868, -556, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 66, -"tbk": 2, -"tl": 127, -"mb": 44, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -1573, -1574, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576, -1577, -1578, -1579, -1580, -1581, -1582, -2639, -2640, -2641, -270 -] -}, -{ -"tb": 640000, -"tbk": 2, -"tl": 1444, -"mb": 320000, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2465, -2466, -2467, -2468, -2469, -2470, -2471, -2472, -2473, -2474, -189, -190, -556, -576, -577, -578, -579, -580, -581, -198, -198, -199, -200, -201, -202, -128, -129 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 28, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1610, -1611, -1612, -1613, -1614, -1615, -130, -131, -132, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 1352, -"tbk": 1, -"tl": 145, -"mb": 1352, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -428, -429, -430, -431, -432, -433, -434, -435, -436, -437, -438, -439, -440, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 24, -"tbk": 2, -"tl": 75589231, -"mb": 16, -"mbk": 1, -"gb": 8, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -517, -518, -519, -520, -521, -522, -523, -524, -525, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 6368, -"tbk": 1, -"tl": 30567, -"mb": 6368, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -3111, -3112, -3113, -3114, -3115, -3116, -3117, -3118, -3119, -3120, -3121, -3122, -3123, -3124, -1466, -138, -139, -140, -141, -142, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 92, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -955, -956, -957, -958, -959, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23 -] -}, -{ -"tb": 56, -"tbk": 1, -"tl": 77516292, -"mb": 56, -"mbk": 1, -"gb": 56, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -3125, -3126, -3127, -3128, -3129, -3130, -26 -] -}, -{ -"tb": 24000000, -"tbk": 300000, -"tl": 7194931, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -3131, -3132, -3133, -3134, -3135, -3136, -3137, -3138, -3139, -3140, -3141, -389, -390, -391, -609, -610, -611, -612, -24, -25, -26 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 4034, -"mb": 160, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -932, -933, -934, -935, -1541, -937, -762, -763, -764, -765, -766, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -474, -475, -1482, -1483, -1484, -1485, -13, -14, -15, -16, -17, -18, -116 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 75574077, -"mb": 96, -"mbk": 1, -"gb": 96, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1218, -1219, -1220, -1221, -1222, -1223, -1224, -61, -62, -63, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 28, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -203, -204, -205, -206, -207, -110, -111, -112, -113, -114, -115, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 19, -"mb": 160, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -57, -58, -59, -60, -130, -131, -132, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23 -] -}, -{ -"tb": 8001200, -"tbk": 200030, -"tl": 159115661416, -"mb": 800120, -"mbk": 20003, -"gb": 800120, -"gbk": 20003, -"eb": 0, -"ebk": 0, -"fs": [ -3142, -3143, -3144, -3145, -3146, -3147, -3148, -2845, -2846, -2845, -2847, -2848, -2849, -2850, -2851, -2852, -2853, -2854, -2855, -2856, -2857, -2858, -2859, -2860, -2861, -2862, -2863, -2864, -2865, -1883, -1217, -225, -226, -227, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 75571531, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1542, -1543, -1544, -1545, -1546, -1547, -1548, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -698, -391 -] -}, -{ -"tb": 144, -"tbk": 1, -"tl": 75570484, -"mb": 144, -"mbk": 1, -"gb": 144, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -750, -751, -752, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -942, -391 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 1934, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1616, -1617, -1618, -1619, -762, -763, -764, -765, -766, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 0, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2203, -2204, -2205, -2206, -2207, -2208, -2209, -2210, -2211, -2212, -1307, -1308, -1309, -1310, -1311, -1312, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 72902828, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1542, -1543, -1544, -1545, -1546, -1547, -1548, -448, -449, -450, -451, -452, -453, -454, -455, -456, -457, -458, -459, -460, -461, -462, -463, -464, -465, -223 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 75571276, -"mb": 72, -"mbk": 1, -"gb": 72, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -441, -442, -443, -444, -445, -446, -447, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -390, -391 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 158, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -61, -62, -63, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25 -] -}, -{ -"tb": 228, -"tbk": 1, -"tl": 19, -"mb": 228, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -57, -58, -59, -60, -130, -131, -132, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23 -] -}, -{ -"tb": 112, -"tbk": 3, -"tl": 23, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -1972, -1973, -1974, -1975, -1976, -1977, -1978, -1979, -1980, -1981, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 4765, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -332, -333, -334, -335, -336, -199, -200, -201, -202, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -526, -527 -] -}, -{ -"tb": 76, -"tbk": 1, -"tl": 79, -"mb": 76, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -428, -429, -430, -431, -432, -433, -434, -435, -436, -437, -438, -439, -440, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 240, -"tbk": 2, -"tl": 75612680, -"mb": 192, -"mbk": 1, -"gb": 48, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -851, -852, -853, -854, -855, -856, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92 -] -}, -{ -"tb": 4, -"tbk": 1, -"tl": 75572281, -"mb": 4, -"mbk": 1, -"gb": 4, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1030, -1031, -1032, -1033, -1034, -1035, -1036, -1037, -1038, -1039, -1040, -130, -131, -132, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 240, -"tbk": 2, -"tl": 75577196, -"mb": 192, -"mbk": 1, -"gb": 48, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -851, -852, -853, -854, -855, -856, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 75571323, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -1357, -1358, -1359, -1360, -1361, -1362, -1363, -1364, -1365, -1366, -1367, -1368, -1369, -457, -458, -604, -605, -606, -607, -608, -390, -391, -609, -610, -611, -612, -24, -25 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 19, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1290, -1291, -1292, -1293, -1294, -176, -177, -178, -179, -180, -181, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 1152, -"tbk": 1, -"tl": 86, -"mb": 1152, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -416, -417, -418, -419, -420, -421, -422, -423, -424, -425, -426, -427, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 319, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -61, -62, -63, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 77514280, -"mb": 16, -"mbk": 1, -"gb": 16, -"gbk": 1, -"eb": 16, -"ebk": 1, -"fs": [ -3149, -3150, -3151, -3152, -3153, -890, -891, -892, -893, -894, -895, -896, -897, -898, -899, -900, -901, -902, -903, -904, -905, -906, -907, -908, -909, -910, -911, -912, -913, -914, -915, -916, -917, -918, -919, -920, -921, -922, -923, -924, -925, -926, -927, -928, -929, -930, -931 -] -}, -{ -"tb": 211, -"tbk": 10, -"tl": 10424621, -"mb": 211, -"mbk": 10, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -2098, -2099, -2100, -3154, -3155, -3156, -3157, -3158, -3159, -3160, -3161, -3162, -3163, -3164, -3165, -3160, -3166, -3167, -3168, -3169, -3170, -3160, -2116, -2117, -2118, -2119, -2120, -2121, -2122, -2123, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 1, -"tbk": 1, -"tl": 15, -"mb": 1, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -3171, -3172, -3173, -3174, -3175, -3176, -3177, -3178, -3179, -3180, -3181, -907, -908, -909, -910, -911, -912, -913, -914, -915, -916, -917, -918, -919, -920, -921, -922, -923, -924, -925, -926, -927, -928, -929, -930, -931, -26 -] -}, -{ -"tb": 248, -"tbk": 5, -"tl": 307, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -481, -482, -1709, -1710, -1711, -1712, -1713, -1714, -1715, -1716, -1717, -1718, -1719, -1720, -1721, -1722, -1723, -1724, -1725, -1726, -1727, -1728, -1729, -1730, -731, -732, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 1152, -"tbk": 1, -"tl": 352, -"mb": 1152, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -416, -417, -418, -419, -420, -421, -422, -423, -424, -425, -426, -427, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2548, -2549, -2550, -2551, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 128, -"tbk": 1, -"tl": 99, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -989, -990, -991, -992, -993, -994, -995, -996, -997, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 3813, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -2194, -2195, -2196, -2197, -2198, -2199, -2200, -2201, -2202, -172, -173, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -474, -475, -1482, -1483, -1484, -1485, -13, -14, -15, -16, -17, -18, -208, -209, -210 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 28, -"mb": 160, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -57, -58, -59, -60, -130, -131, -132, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23 -] -}, -{ -"tb": 19, -"tbk": 6, -"tl": 299, -"mb": 10, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -721, -722, -723, -724, -725, -726, -727, -728, -729, -730, -138, -139, -140, -141, -142, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 195, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -143, -144 -] -}, -{ -"tb": 40, -"tbk": 2, -"tl": 75577196, -"mb": 32, -"mbk": 1, -"gb": 8, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -845, -846, -847, -848, -849, -850, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23 -] -}, -{ -"tb": 176, -"tbk": 1, -"tl": 75590656, -"mb": 176, -"mbk": 1, -"gb": 176, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1936, -1937, -1938, -1939, -1940, -1941, -1942, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75631340, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -278, -279, -280, -281, -282, -283, -284, -285, -286, -287, -288, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -474, -475, -476, -477, -478, -479, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 1312, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -861, -862, -863, -864, -865, -866, -867, -868, -556, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 880, -"tbk": 11, -"tl": 0, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1263, -1264, -1265, -1266, -1323, -937, -762, -763, -764, -765, -766, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 212, -"tbk": 1, -"tl": 29, -"mb": 212, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -57, -58, -59, -60, -130, -131, -132, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23 -] -}, -{ -"tb": 208, -"tbk": 3, -"tl": 921, -"mb": 128, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -575, -547, -548, -556, -576, -577, -578, -579, -580, -581, -198, -198, -199, -200, -201, -202, -128, -129 -] -}, -{ -"tb": 96, -"tbk": 2, -"tl": 49, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -1606, -1607, -1608, -1609, -61, -62, -63, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 42, -"tbk": 1, -"tl": 2770, -"mb": 42, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -145, -146, -147, -148, -149, -150, -151, -152, -153, -154, -155, -156, -157, -158, -159, -160, -161, -162, -163, -164, -165, -166, -167, -168, -169, -170, -171, -172, -173, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 40, -"tbk": 1, -"tl": 75573884, -"mb": 40, -"mbk": 1, -"gb": 40, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1118, -1119, -1120, -1121, -1122, -1123, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 48, -"tbk": 3, -"tl": 10496, -"mb": 48, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1943, -1944, -1945, -1240, -1241, -1242, -1243, -1244, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 4365, -"mb": 160, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -133, -134, -135, -136, -137, -138, -139, -140, -141, -142, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 1396, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -75, -76, -77, -78, -79, -80, -81, -82, -83, -84, -85, -86, -87, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 40, -"tbk": 1, -"tl": 75579269, -"mb": 40, -"mbk": 1, -"gb": 40, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1118, -1119, -1120, -1121, -1122, -1123, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 2400, -"tbk": 4, -"tl": 34, -"mb": 1280, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -2451, -2452, -3182, -3183, -3184, -3185, -3186, -3187, -3188, -3189, -3190, -3191, -3192, -3193, -914, -915, -916, -917, -918, -919, -920, -921, -922, -923, -924, -925, -926, -927, -928, -929, -930, -931, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 17, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -2242, -2243, -2244, -561, -562, -563, -564, -565, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 256, -"tbk": 2, -"tl": 1818, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -182, -183, -184, -185, -186, -187, -188, -189, -190, -549, -550, -551, -552, -553, -554, -555, -556, -198, -576, -577, -578, -579, -580, -581 -] -}, -{ -"tb": 2, -"tbk": 1, -"tl": 36, -"mb": 2, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -299, -300, -301, -302, -303, -304, -305, -306, -307, -308, -309, -310, -311, -312, -130, -131, -132, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 1343, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -861, -862, -863, -864, -865, -866, -867, -868, -556, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 11, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -474, -475, -476, -477, -478, -479, -13, -14, -15, -16, -17, -18, -116 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 27, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -326, -327, -328, -13, -14, -15, -16, -17, -18, -298 -] -}, -{ -"tb": 512, -"tbk": 1, -"tl": 75579287, -"mb": 512, -"mbk": 1, -"gb": 512, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1225, -1226, -1227, -1228, -1229, -1230, -1231, -1232, -1233, -1234, -1235, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1583, -1584, -1585, -1586, -1587, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 7368, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -75, -76, -77, -78, -79, -80, -81, -82, -83, -84, -85, -86, -87, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 75571440, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1542, -1543, -1544, -1545, -1546, -1547, -1548, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -698, -391 -] -}, -{ -"tb": 2048, -"tbk": 64, -"tl": 45696, -"mb": 416, -"mbk": 13, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -541, -542, -543, -544, -545, -1595, -1596, -1597, -191, -192, -193, -194, -195, -196, -197, -198, -198 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 2962, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -774, -775, -198, -192, -193, -194, -195, -196, -197, -198, -199, -200, -201, -202, -128, -129 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 14965, -"mb": 160, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1255, -1256, -1257, -1258, -937, -762, -763, -764, -765, -766, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 253, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -61, -62, -63, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23 -] -}, -{ -"tb": 240, -"tbk": 3, -"tl": 226745558, -"mb": 240, -"mbk": 3, -"gb": 240, -"gbk": 3, -"eb": 0, -"ebk": 0, -"fs": [ -528, -529, -530, -531, -532, -533, -534, -535, -536, -537, -130, -131, -132, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 3288, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2008, -2009, -2010, -561, -562, -563, -564, -565, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75570163, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -2390, -2391, -2392, -2393, -2394, -2395, -2396, -2397, -2398, -457, -458, -604, -605, -606, -607, -608, -753, -391, -609, -610, -611, -612, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 17, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -2235, -2236, -2237, -2238, -2239, -2240, -2241, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 75585196, -"mb": 96, -"mbk": 1, -"gb": 96, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1218, -1219, -1220, -1221, -1222, -1223, -1224, -61, -62, -63, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 95, -"tbk": 1, -"tl": 1875364, -"mb": 95, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -2098, -2099, -2100, -2101, -2102, -2103, -2104, -3194, -3195, -3196, -3197, -3198, -3199, -3200, -3201, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 77515080, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -2171, -2172, -2173, -2174, -2175, -3202, -3203, -3204, -3205, -3206, -3207, -3208, -26 -] -}, -{ -"tb": 480, -"tbk": 10, -"tl": 1010317, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2827, -2828, -2829, -2830, -2831, -2832, -2449, -2450, -1575, -1576, -1575, -1576, -1577, -1578, -1579, -1580, -1581, -1582, -2411, -2412, -504, -505, -506, -507, -508, -509, -510, -511, -512, -513, -514, -515, -516, -270, -271, -272 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 75590679, -"mb": 80, -"mbk": 1, -"gb": 80, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -65, -66, -67, -68, -69, -70, -71, -72, -73, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 75600096, -"mb": 80, -"mbk": 1, -"gb": 80, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1588, -1589, -1590, -1591, -1592, -1593, -1594, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1903, -1904, -1905, -1906, -1907, -1908, -1909, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75599444, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -278, -279, -280, -281, -282, -283, -284, -285, -286, -287, -288, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 18, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -359, -360, -361, -362, -363, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 248, -"tbk": 1, -"tl": 160, -"mb": 248, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -767, -768, -769, -770, -771, -772, -773, -130, -131, -132, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 144, -"tbk": 1, -"tl": 75570118, -"mb": 144, -"mbk": 1, -"gb": 144, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -750, -751, -752, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -753, -391 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 30258, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -932, -933, -934, -935, -936, -937, -762, -763, -764, -765, -766, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 144, -"tbk": 1, -"tl": 2584, -"mb": 144, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -754, -755, -756, -757, -758, -759, -760, -761, -762, -763, -764, -765, -766, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 240, -"tbk": 2, -"tl": 8, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2229, -2230, -110, -111, -112, -113, -114, -115, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 120, -"tbk": 2, -"tl": 75599911, -"mb": 96, -"mbk": 1, -"gb": 24, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -613, -614, -615, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92 -] -}, -{ -"tb": 2, -"tbk": 1, -"tl": 37, -"mb": 2, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -299, -300, -301, -302, -303, -304, -305, -306, -307, -308, -309, -310, -311, -312, -61, -62, -63, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75571259, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -596, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -390, -391, -609, -610, -611, -612 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 183, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -932, -933, -934, -935, -1541, -1564, -1436, -1437, -1438, -1439, -1440, -1441, -1442, -1443, -1444, -1445, -1446, -1447, -1448, -1449, -1450, -1451, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 28, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1610, -1611, -1612, -1613, -1614, -1615, -61, -62, -63, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 37, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1167, -1168, -1169, -1170, -11, -12, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 30277, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -1041, -1042, -1043, -1044, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 901, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -332, -333, -334, -335, -336, -199, -200, -201, -202, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -103, -104 -] -}, -{ -"tb": 240, -"tbk": 3, -"tl": 0, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -105, -106, -107, -108, -109, -110, -111, -112, -113, -114, -115, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 21, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1731, -1732, -1733, -1734, -1735, -1736, -1737, -1738, -1739, -1740, -1741, -1742, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 1696, -"tbk": 26, -"tl": 41600, -"mb": 1024, -"mbk": 12, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -2656, -2657, -2658, -2659, -2660, -1595, -1596, -1597, -191, -192, -193, -194, -195, -196, -197, -198, -198 -] -}, -{ -"tb": 288, -"tbk": 2, -"tl": 19, -"mb": 240, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2229, -2230, -110, -111, -112, -113, -114, -115, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 120, -"tbk": 2, -"tl": 75579844, -"mb": 96, -"mbk": 1, -"gb": 24, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -613, -614, -615, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23 -] -}, -{ -"tb": 10, -"tbk": 1, -"tl": 27, -"mb": 10, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -977, -978, -979, -980, -981, -982, -983, -984, -985, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 587, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 462, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2668, -2669, -2670, -2671, -2672, -2673, -2674, -2675, -2676, -2677, -2678, -2679, -250, -251, -252, -253, -254, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 47, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -203, -204, -205, -206, -207, -110, -111, -112, -113, -114, -115, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 18, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1847, -1848, -1849, -1850, -1851, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 256, -"tbk": 2, -"tl": 2529, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -182, -183, -184, -185, -186, -187, -188, -189, -190, -556, -198, -576, -577, -578, -579, -580, -581, -549, -550, -551, -552, -553, -554, -555 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 86, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -955, -956, -957, -958, -959, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23 -] -}, -{ -"tb": 240, -"tbk": 2, -"tl": 37, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2229, -2230, -110, -111, -112, -113, -114, -115, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 2, -"tl": 287, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -828, -829, -830, -831, -832, -833, -834, -835, -836, -837, -838, -554, -555, -556, -828, -829, -830, -831, -832, -833 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 48, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1290, -1291, -1292, -1293, -1294, -176, -177, -178, -179, -180, -181, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 400, -"tbk": 1, -"tl": 75579748, -"mb": 400, -"mbk": 1, -"gb": 400, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -879, -880, -881, -882, -883, -884, -130, -131, -132, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 7256, -"tbk": 877, -"tl": 121, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1000, -1001, -1002, -1003, -1004, -191, -828, -829, -830, -831, -832, -833, -199, -200, -201, -202, -128, -129, -61, -62, -63, -13, -14, -15, -16, -17, -18 -] -}, -{ -"tb": 252, -"tbk": 1, -"tl": 68, -"mb": 252, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -1103, -1104, -1105, -1106, -1107, -1108, -1109, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 67210080, -"tbk": 100000, -"tl": 5940705, -"mb": 1680, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -3209, -3210, -3211, -3212, -3213, -3214, -3215, -2081, -2082, -2083, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 30439, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -133, -134, -135, -136, -137, -138, -139, -140, -141, -142, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 800, -"tbk": 2, -"tl": 0, -"mb": 640, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -668, -669, -670, -671, -672, -673, -674, -176, -177, -178, -179, -180, -181, -16, -17, -18, -116, -20, -21, -22, -23 -] -}, -{ -"tb": 96, -"tbk": 12, -"tl": 8931, -"mb": 48, -"mbk": 6, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -1766, -1595, -1596, -1597, -556, -198, -576, -577, -578, -579, -580, -581, -834, -835, -836, -837, -838, -554, -555 -] -}, -{ -"tb": 576, -"tbk": 2, -"tl": 178, -"mb": 384, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -946, -947, -948, -3105, -3106, -3107, -3108, -3109, -3110, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 960, -"tbk": 30, -"tl": 4776, -"mb": 192, -"mbk": 6, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -541, -542, -543, -544, -545, -1595, -1596, -1597, -556, -576, -577, -578, -579, -580, -581, -834, -835, -836, -837, -838, -554, -555 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 1589, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -1137, -1138, -1139, -1140, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 75578108, -"mb": 160, -"mbk": 1, -"gb": 160, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -645, -646, -647, -648, -649, -650, -651, -652, -650, -653, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 269, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -861, -862, -863, -864, -865, -866, -867, -868, -556, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 248, -"tbk": 5, -"tl": 294, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -481, -482, -1709, -1710, -1711, -1712, -1713, -1714, -1715, -1716, -1717, -1718, -1719, -1720, -1721, -1722, -1723, -1724, -1725, -1726, -1727, -1728, -1729, -1730, -268, -269, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 1734, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -3216, -3217, -3218, -3219, -3220, -3221, -3222, -3223, -3224, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 0, -"mb": 160, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1825, -1826, -1827, -1828, -1829, -1830, -1831, -1832, -1833, -1834, -1835, -1836, -1837, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 75571623, -"mb": 80, -"mbk": 1, -"gb": 80, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -2390, -2391, -2392, -2393, -2394, -2395, -2396, -2397, -2398, -457, -458, -604, -605, -606, -607, -608, -698, -391, -609, -610, -611, -612, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1049, -1050, -1051, -1052, -1053, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 963, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -861, -862, -863, -864, -865, -866, -867, -868, -556, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 9601440, -"tbk": 200030, -"tl": 21126, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2586, -2587, -2588, -2589, -2590, -2591, -2592, -2593, -2594, -3225, -3226, -3227, -464, -465, -223, -224, -225, -226, -227, -24, -25, -26 -] -}, -{ -"tb": 8001200, -"tbk": 200030, -"tl": 5927377, -"mb": 40, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -3228, -3229, -3230, -3231, -3232, -3233, -3234, -3235, -3236, -3237, -3238, -3239, -3240, -3241, -2850, -2851, -2852, -2853, -2854, -2855, -2856, -2857, -2858, -2859, -2860, -2861, -2862, -2863, -2864, -2865, -1883, -1217 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75600283, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -278, -279, -280, -281, -282, -283, -284, -285, -286, -287, -288, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 3261, -"mb": 72, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -699, -700, -701, -702, -1600, -1601, -1602, -1603, -1604, -1605, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 2000, -"tbk": 1, -"tl": 75585004, -"mb": 2000, -"mbk": 1, -"gb": 2000, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1259, -1260, -1261, -1262, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 2505, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -1041, -1042, -1043, -1044, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 4, -"tbk": 1, -"tl": 75581942, -"mb": 4, -"mbk": 1, -"gb": 4, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1030, -1031, -1032, -1033, -1034, -1035, -1036, -1037, -1038, -1039, -1040, -130, -131, -132, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 66, -"tbk": 2, -"tl": 106, -"mb": 44, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -1573, -1574, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576, -1577, -1578, -1579, -1580, -1581, -1582, -1656, -1657, -1658, -270 -] -}, -{ -"tb": 456, -"tbk": 3, -"tl": 75599838, -"mb": 192, -"mbk": 1, -"gb": 168, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1179, -1180, -1181, -1182, -1183, -1184, -1185, -1186, -130, -131, -132, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92 -] -}, -{ -"tb": 64, -"tbk": 2, -"tl": 5431, -"mb": 64, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -1766, -546, -547, -548, -191, -192, -193, -194, -195, -196, -197, -198, -198, -199, -200, -201, -202 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -474, -475, -476, -477, -478, -479, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 320, -"tbk": 4, -"tl": 11137, -"mb": 320, -"mbk": 4, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -932, -933, -934, -935, -1541, -937, -762, -763, -764, -765, -766, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 288, -"tbk": 2, -"tl": 35, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -326, -327, -328, -13, -14, -15, -16, -17, -18, -116 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 2006, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -754, -755, -756, -757, -758, -759, -760, -761, -762, -763, -764, -765, -766, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 200, -"tbk": 1, -"tl": 28, -"mb": 200, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -57, -58, -59, -60, -130, -131, -132, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 154, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1255, -1256, -1257, -1258, -1564, -1436, -1437, -1438, -1439, -1440, -1441, -1442, -1443, -1444, -1445, -1446, -1447, -1448, -1449, -1450, -1451, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 382, -"mb": 160, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -779, -780, -781, -1422, -1423, -1437, -1438, -1439, -1440, -1441, -1442, -1443, -1444, -1445, -1446, -1447, -1448, -1449, -1450, -1451, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 3953, -"mb": 160, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -932, -933, -934, -935, -1541, -937, -762, -763, -764, -765, -766, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 979, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -861, -862, -863, -864, -865, -866, -867, -868, -556, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 94, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -1606, -1607, -1608, -1609, -130, -131, -132, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 37, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -3002, -3003, -3004, -762, -763, -764, -765, -766, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 240, -"tbk": 3, -"tl": 8917, -"mb": 240, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -133, -134, -135, -136, -137, -138, -139, -140, -141, -142, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 44806720, -"tbk": 200030, -"tl": 159113693529, -"mb": 4480672, -"mbk": 20003, -"gb": 4480672, -"gbk": 20003, -"eb": 0, -"ebk": 0, -"fs": [ -3242, -3243, -3244, -3245, -3246, -3247, -3248, -3249, -3250, -3251, -3252, -3253, -3254, -2850, -2851, -2852, -2853, -2854, -2855, -2856, -2857, -2858, -2859, -2860, -2861, -2862, -2863, -2864, -2865, -1883, -1217, -225, -226, -227, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 40, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2527, -2528, -2529, -2530, -2531, -2532, -2533, -2534, -3255, -3256, -3257, -3258, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 327, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -64 -] -}, -{ -"tb": 32, -"tbk": 2, -"tl": 273, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -774, -775, -828, -829, -830, -831, -832, -833, -199, -200, -201, -202, -128, -129, -61, -62, -63, -13, -14, -15 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 75571186, -"mb": 72, -"mbk": 1, -"gb": 72, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -441, -442, -443, -444, -445, -446, -447, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -390, -391 -] -}, -{ -"tb": 8000000, -"tbk": 100000, -"tl": 15054, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2586, -2587, -2588, -2589, -2590, -2591, -2592, -2593, -2594, -2595, -2596, -2597, -698, -391, -609, -610, -611, -612, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 68, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -289, -290, -291, -292, -293, -294, -295, -296, -297, -130, -131, -132, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 240, -"tbk": 2, -"tl": 38, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2229, -2230, -110, -111, -112, -113, -114, -115, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 18, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -986, -987, -988, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 72902764, -"mb": 72, -"mbk": 1, -"gb": 72, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -441, -442, -443, -444, -445, -446, -447, -448, -1399, -1400, -1401, -1402, -1403, -1404, -1405, -1406, -457, -458, -459, -460, -461, -462, -463, -464, -465, -223 -] -}, -{ -"tb": 320, -"tbk": 4, -"tl": 11131, -"mb": 320, -"mbk": 4, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -932, -933, -934, -935, -1541, -937, -762, -763, -764, -765, -766, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 3200640, -"tbk": 10, -"tl": 48029, -"mb": 320064, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -3259, -3260, -3261, -3262, -3263, -3264, -3265, -3266, -3267, -3268, -3269, -3270, -1575, -1576, -1575, -1576, -1577, -1578, -1579, -1580, -1581, -1582, -2411, -2412, -504, -505, -506, -507, -508, -509, -510, -511, -512, -513, -514, -515, -516, -270, -271, -272 -] -}, -{ -"tb": 96, -"tbk": 2, -"tl": 240, -"mb": 96, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1746, -1747, -1748, -1749, -1750, -716, -717, -718, -719, -720, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 144, -"tbk": 2, -"tl": 15669, -"mb": 144, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -699, -700, -701, -702, -1202, -561, -562, -563, -564, -565, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 30534, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -133, -134, -135, -136, -2245, -138, -139, -140, -141, -142, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 512, -"tbk": 1, -"tl": 75588757, -"mb": 512, -"mbk": 1, -"gb": 512, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1225, -1226, -1227, -1228, -1229, -1230, -1231, -1232, -1233, -1234, -1235, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 2, -"tbk": 2, -"tl": 249, -"mb": 2, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -721, -722, -723, -724, -725, -726, -727, -728, -729, -730, -138, -139, -140, -141, -142, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 3, -"tbk": 1, -"tl": 816, -"mb": 3, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -228, -229, -230, -231, -232, -233, -234, -235, -236, -237, -238, -239, -240, -241, -242, -243, -244, -245, -246, -247, -248, -249, -1844, -1845, -1846, -26 -] -}, -{ -"tb": 400, -"tbk": 1, -"tl": 75599613, -"mb": 400, -"mbk": 1, -"gb": 400, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -879, -880, -881, -882, -883, -884, -61, -62, -63, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 99, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -955, -956, -957, -958, -959, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23 -] -}, -{ -"tb": 104, -"tbk": 1, -"tl": 0, -"mb": 104, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2203, -2204, -2205, -2206, -2207, -2208, -2209, -2210, -2211, -2212, -1307, -1308, -1309, -1310, -1311, -1312, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 119, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1746, -1747, -1748, -1749, -1750, -716, -717, -718, -719, -720, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 128, -"tbk": 1, -"tl": 499, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -182, -183, -184, -185, -186, -187, -188, -189, -190, -556, -576, -577, -578, -579, -580, -581, -198, -199, -200, -201, -202, -128, -129 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 19, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -359, -360, -361, -362, -363, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 18, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1847, -1848, -1849, -1850, -1851, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23 -] -}, -{ -"tb": 96, -"tbk": 2, -"tl": 4209, -"mb": 96, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -857, -858, -859, -860, -762, -763, -764, -765, -766, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 224, -"tbk": 3, -"tl": 35, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1999, -2000, -2001, -2002, -2003, -2004, -2005, -2006, -2007, -322, -323, -324, -325, -326, -327, -328, -13, -14, -15, -16, -17, -18, -64 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 2618, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -575, -547, -548, -556, -198, -576, -577, -578, -579, -580, -581, -198, -199, -200, -201, -202, -128, -129 -] -}, -{ -"tb": 62, -"tbk": 1, -"tl": 38, -"mb": 62, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -960, -961, -962, -963, -964, -965, -966, -967, -130, -131, -132, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 3305, -"mb": 72, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -699, -700, -701, -702, -1951, -561, -562, -563, -564, -565, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 270, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -861, -862, -863, -864, -865, -866, -867, -868, -556, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 320, -"tbk": 2, -"tl": 3, -"mb": 160, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -791, -3271, -3272, -3273, -3274, -3275, -3276, -3277, -3278, -3279, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 236, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1370, -1371, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23 -] -}, -{ -"tb": 224, -"tbk": 1, -"tl": 1986, -"mb": 224, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -2750, -2751, -2752, -2753, -2754, -2755, -2756, -2757, -1750, -716, -717, -718, -719, -720, -16, -17, -18, -208, -209, -210, -24, -25 -] -}, -{ -"tb": 200, -"tbk": 1, -"tl": 73, -"mb": 200, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -1103, -1104, -1105, -1106, -1107, -1108, -1109, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 896, -"tbk": 3, -"tl": 75570428, -"mb": 512, -"mbk": 1, -"gb": 512, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -683, -684, -685, -686, -687, -688, -689, -690, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -942, -391 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 4222, -"mb": 160, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -932, -933, -934, -935, -1541, -937, -762, -763, -764, -765, -766, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 192, -"tbk": 3, -"tl": 49, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -2552, -2553, -2554, -2555, -2556, -2557, -2558, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 27, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -289, -290, -291, -292, -293, -294, -295, -296, -297, -61, -62, -63, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 28, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -289, -290, -291, -292, -293, -294, -295, -296, -297, -61, -62, -63, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 288, -"tbk": 2, -"tl": 61540, -"mb": 288, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -557, -558, -559, -560, -561, -562, -563, -564, -565, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 184, -"tbk": 5, -"tl": 377947111, -"mb": 184, -"mbk": 5, -"gb": 184, -"gbk": 5, -"eb": 0, -"ebk": 0, -"fs": [ -528, -529, -530, -531, -532, -533, -534, -535, -536, -537, -130, -131, -132, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 784, -"tbk": 14, -"tl": 36997, -"mb": 784, -"mbk": 14, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1348, -1349, -1350, -1351, -1352, -1353, -1354, -1355, -1356, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 9, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2507, -2508, -2509, -2510, -1171, -1172, -1054, -1055, -642, -643, -644, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 16, -"tbk": 2, -"tl": 1117, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -1766, -546, -547, -548, -549, -550, -551, -552, -553, -554, -555, -556, -198, -576, -577, -578, -579, -580, -581 -] -}, -{ -"tb": 704, -"tbk": 11, -"tl": 508, -"mb": 704, -"mbk": 11, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -2348, -2349, -2350, -2351, -2352, -2353, -2354, -322, -323, -324, -325, -326, -327, -328, -13, -14, -15, -16, -17, -18, -19 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 75575641, -"mb": 80, -"mbk": 1, -"gb": 80, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -65, -66, -67, -68, -69, -70, -71, -72, -73, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 85, -"tbk": 29, -"tl": 8558, -"mb": 85, -"mbk": 29, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -228, -229, -230, -231, -232, -233, -234, -235, -236, -237, -238, -239, -240, -241, -242, -243, -244, -2793, -2794, -2795, -2796, -2797, -2798, -2799, -1195, -1196, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 525, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -678, -679, -680, -681, -682, -199, -200, -201, -202, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -208, -209, -210 -] -}, -{ -"tb": 128, -"tbk": 1, -"tl": 7822, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1236, -1237, -1238, -1239, -2742, -2743, -2744, -2745, -2746, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 128, -"tbk": 1, -"tl": 146, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -2271, -2272, -2273, -2274, -2275, -2276, -2277, -2278, -2279, -2280, -2281, -2282, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -74 -] -}, -{ -"tb": 48, -"tbk": 3, -"tl": 10505, -"mb": 48, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1943, -1944, -1945, -1240, -1241, -1242, -1243, -1244, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 66, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -1606, -1607, -1608, -1609, -130, -131, -132, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 288, -"tbk": 9, -"tl": 680139284, -"mb": 288, -"mbk": 9, -"gb": 288, -"gbk": 9, -"eb": 0, -"ebk": 0, -"fs": [ -364, -365, -366, -367, -368, -369, -370, -371, -372, -373, -3280, -3281, -3282, -377, -378, -379, -380, -381, -382, -383, -384, -385, -386, -387, -388, -389, -390, -391 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 70, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -289, -290, -291, -292, -293, -294, -295, -296, -297, -130, -131, -132, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 240, -"tbk": 3, -"tl": 0, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1263, -1264, -1265, -1266, -1323, -937, -762, -763, -764, -765, -766, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 896, -"tbk": 1, -"tl": 230, -"mb": 896, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -710, -711, -712, -713, -714, -715, -716, -717, -718, -719, -720, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 26, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -289, -290, -291, -292, -293, -294, -295, -296, -297, -61, -62, -63, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 3200000, -"tbk": 100000, -"tl": 11444, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2586, -2587, -2588, -2589, -2590, -2591, -2592, -2593, -2594, -2595, -2596, -2597, -942, -391, -609, -610, -611, -612, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75590670, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1520, -1521, -1522, -1523, -1524, -1525, -1526, -1527, -1528, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -474, -475, -1482, -1483, -1484, -1485, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1903, -1904, -1905, -1906, -1907, -1908, -1909, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25 -] -}, -{ -"tb": 960, -"tbk": 10, -"tl": 10424509, -"mb": 960, -"mbk": 10, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -3283, -3284, -3285, -3286, -3287, -3288, -3289, -3290, -3160, -3161, -3162, -3163, -3164, -3165, -3160, -3166, -3167, -3168, -3169, -3170, -3160, -2116, -2117, -2118, -2119, -2120, -2121, -2122, -2123, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 40, -"tbk": 2, -"tl": 75599911, -"mb": 32, -"mbk": 1, -"gb": 8, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -845, -846, -847, -848, -849, -850, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92 -] -}, -{ -"tb": 480, -"tbk": 2, -"tl": 0, -"mb": 320, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1825, -1826, -1827, -1828, -1829, -1830, -1831, -1832, -1833, -1834, -1835, -1836, -1837, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 20304, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -88, -89 -] -}, -{ -"tb": 32592, -"tbk": 9, -"tl": 75610137, -"mb": 12288, -"mbk": 1, -"gb": 8112, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1179, -1180, -1181, -1182, -1183, -1184, -1185, -1186, -130, -131, -132, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 28, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1610, -1611, -1612, -1613, -1614, -1615, -130, -131, -132, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 19, -"tbk": 1, -"tl": 77515098, -"mb": 19, -"mbk": 1, -"gb": 19, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -3291, -3292, -3293, -3294, -3295, -3296, -3297, -3298, -3299, -3300, -3301, -3302, -3303, -3304, -3305, -3306, -3307, -3308, -3309, -3310, -3311, -3312, -3313, -3314, -3315, -3316, -26 -] -}, -{ -"tb": 4000800, -"tbk": 10, -"tl": 813886, -"mb": 400080, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -791, -3271, -3272, -3273, -3274, -3275, -3276, -3277, -3278, -3279, -1575, -1576, -1575, -1576, -1577, -1578, -1579, -1580, -1581, -1582, -2411, -2412, -504, -505, -506, -507, -508, -509, -510, -511, -512, -513, -514, -515, -516, -270 -] -}, -{ -"tb": 162, -"tbk": 2, -"tl": 2, -"mb": 108, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -3317, -3318, -3319, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -474, -475, -1482, -1483, -1484, -1485, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 76, -"tbk": 1, -"tl": 75570594, -"mb": 76, -"mbk": 1, -"gb": 76, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -938, -939, -940, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -942, -391 -] -}, -{ -"tb": 8064, -"tbk": 6, -"tl": 367, -"mb": 4096, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -93, -94, -95, -96, -97, -98, -99, -100, -101, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -526, -527 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 75579458, -"mb": 96, -"mbk": 1, -"gb": 96, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1218, -1219, -1220, -1221, -1222, -1223, -1224, -61, -62, -63, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 1344, -"tbk": 3, -"tl": 368, -"mb": 768, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -946, -947, -948, -1760, -1761, -1762, -1763, -1764, -1765, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 12, -"tbk": 7, -"tl": 19672, -"mb": 12, -"mbk": 7, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1339, -1340, -1341, -1342, -1343, -1344, -1345, -1346, -1347, -937, -762, -763, -764, -765, -766, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 1, -"tbk": 1, -"tl": 0, -"mb": 1, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -3320, -3321, -3322, -3323, -3324, -3325, -3326, -3327, -3328, -3329, -3330, -3331, -3332, -3333, -3334, -3335, -3336, -2807, -2808, -2809, -2810, -1505, -1506, -2811, -2812, -2813, -2814, -2815, -2816, -2817, -2818, -2819, -2327, -2328, -2820, -2821, -2822, -2823, -2824, -2825, -2826 -] -}, -{ -"tb": 440, -"tbk": 1, -"tl": 75571512, -"mb": 440, -"mbk": 1, -"gb": 440, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -938, -939, -940, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -698, -391 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 72902989, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -3337, -3338, -3339, -3340, -3341, -3342, -3343, -3344, -3345, -3346, -3347, -3348, -3349, -3350, -457, -458, -459, -460, -461, -462, -463, -464, -465, -223, -224, -225, -226, -227 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1583, -1584, -1585, -1586, -1587, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 38, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1290, -1291, -1292, -1293, -1294, -176, -177, -178, -179, -180, -181, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1583, -1584, -1585, -1586, -1587, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25 -] -}, -{ -"tb": 432, -"tbk": 2, -"tl": 4964, -"mb": 432, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1187, -1188, -1189, -1190, -1191, -1192, -1193, -1194, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 375, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1370, -1371, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92 -] -}, -{ -"tb": 440, -"tbk": 1, -"tl": 75571503, -"mb": 440, -"mbk": 1, -"gb": 440, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -938, -939, -940, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -698, -391 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75571348, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1274, -1275, -1276, -1277, -1278, -1279, -1280, -1281, -1282, -1283, -1284, -1285, -1286, -1287, -1288, -1289, -377, -378, -379, -380, -381, -382, -383, -384, -385, -386, -387, -388, -389, -698, -391 -] -}, -{ -"tb": 1792, -"tbk": 3, -"tl": 75570296, -"mb": 1024, -"mbk": 1, -"gb": 1024, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -683, -684, -685, -686, -687, -688, -689, -690, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -941, -391 -] -}, -{ -"tb": 7, -"tbk": 1, -"tl": 27, -"mb": 7, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -977, -978, -979, -980, -981, -982, -983, -984, -985, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 1502, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -133, -134, -135, -136, -137, -138, -139, -140, -141, -142, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 7863360, -"tbk": 130, -"tl": 764832834, -"mb": 3932160, -"mbk": 10, -"gb": 3932160, -"gbk": 10, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -3283, -3284, -3285, -3351, -3352, -3353, -504, -505, -506, -507, -508, -509, -510, -511, -512, -513, -514, -515, -516, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 4020, -"tbk": 2, -"tl": 151201354, -"mb": 4020, -"mbk": 2, -"gb": 4020, -"gbk": 2, -"eb": 0, -"ebk": 0, -"fs": [ -869, -870, -871, -872, -873, -874, -875, -876, -877, -878, -61, -62, -63, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 1694, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -2235, -2236, -2237, -2238, -2239, -2240, -2241, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 168, -"tbk": 2, -"tl": 151154304, -"mb": 168, -"mbk": 2, -"gb": 168, -"gbk": 2, -"eb": 0, -"ebk": 0, -"fs": [ -528, -529, -530, -531, -532, -533, -534, -535, -536, -537, -130, -131, -132, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 8064, -"tbk": 6, -"tl": 110, -"mb": 4096, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -93, -94, -95, -96, -97, -98, -99, -100, -101, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -208, -209, -210 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 75600712, -"mb": 96, -"mbk": 1, -"gb": 96, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1218, -1219, -1220, -1221, -1222, -1223, -1224, -61, -62, -63, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -596, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -390 -] -}, -{ -"tb": 896, -"tbk": 1, -"tl": 395, -"mb": 896, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -710, -711, -712, -713, -714, -715, -716, -717, -718, -719, -720, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 128, -"tbk": 1, -"tl": 30885, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1236, -1237, -1238, -1239, -1946, -1947, -1948, -1949, -1950, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 1792, -"tbk": 3, -"tl": 75570205, -"mb": 1024, -"mbk": 1, -"gb": 1024, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -683, -684, -685, -686, -687, -688, -689, -690, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -941, -391 -] -}, -{ -"tb": 768, -"tbk": 4, -"tl": 274, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -1757, -1758, -1759, -762, -763, -764, -765, -766, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 2000, -"tbk": 1, -"tl": 75599529, -"mb": 2000, -"mbk": 1, -"gb": 2000, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1259, -1260, -1261, -1262, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 7447, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -2426, -2427, -2428, -937, -762, -763, -764, -765, -766, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 480, -"tbk": 6, -"tl": 0, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1263, -1264, -1265, -1266, -1323, -937, -762, -763, -764, -765, -766, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 67, -"tbk": 1, -"tl": 42, -"mb": 67, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -960, -961, -962, -963, -964, -965, -966, -967, -130, -131, -132, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 208, -"tbk": 3, -"tl": 75585705, -"mb": 128, -"mbk": 1, -"gb": 128, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -998, -999, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 6, -"tl": 24, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1000, -1001, -1002, -1003, -1004, -556, -828, -829, -830, -831, -832, -833, -834, -835, -836, -837, -838, -554, -555, -556, -828, -829, -830, -831, -832, -833, -199, -200, -201, -202 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 27, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -3002, -3003, -3004, -762, -763, -764, -765, -766, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 86400000, -"tbk": 100000, -"tl": 11070034561, -"mb": 8640000, -"mbk": 10000, -"gb": 8640000, -"gbk": 10000, -"eb": 0, -"ebk": 0, -"fs": [ -47, -1203, -1204, -1205, -1206, -3354, -3355, -3356, -1210, -1211, -1212, -1213, -1214, -1215, -1216, -1217 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 75574519, -"mb": 96, -"mbk": 1, -"gb": 96, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1218, -1219, -1220, -1221, -1222, -1223, -1224, -130, -131, -132, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 68, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -1606, -1607, -1608, -1609, -61, -62, -63, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 8064, -"tbk": 6, -"tl": 218, -"mb": 4096, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -93, -94, -95, -96, -97, -98, -99, -100, -101, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -74 -] -}, -{ -"tb": 144, -"tbk": 1, -"tl": 28, -"mb": 144, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -57, -58, -59, -60, -61, -62, -63, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23 -] -}, -{ -"tb": 112, -"tbk": 8, -"tl": 25, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1000, -1001, -1002, -1003, -1004, -549, -550, -551, -552, -553, -554, -555, -556, -828, -829, -830, -831, -832, -833, -199, -200, -201, -202, -128, -129, -61, -62, -63 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 68, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -203, -204, -205, -206, -207, -110, -111, -112, -113, -114, -115, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 13, -"tbk": 1, -"tl": 8021, -"mb": 13, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -145, -146, -147, -148, -149, -150, -151, -152, -153, -154, -155, -156, -157, -158, -159, -160, -161, -162, -163, -164, -165, -166, -167, -168, -169, -170, -171, -172, -173, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 81, -"tbk": 1, -"tl": 42, -"mb": 81, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -960, -961, -962, -963, -964, -965, -966, -967, -61, -62, -63, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 0, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1263, -1264, -1265, -1266, -1323, -1564, -1436, -1437, -1438, -1439, -1440, -1441, -1442, -1443, -1444, -1445, -1446, -1447, -1448, -1449, -1450, -1451, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 96, -"tbk": 12, -"tl": 4539, -"mb": 48, -"mbk": 6, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -1766, -1595, -1596, -1597, -556, -198, -576, -577, -578, -579, -580, -581, -1568, -1569, -1570, -1571, -1572, -554, -555 -] -}, -{ -"tb": 76, -"tbk": 1, -"tl": 37, -"mb": 76, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -960, -961, -962, -963, -964, -965, -966, -967, -61, -62, -63, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1583, -1584, -1585, -1586, -1587, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92 -] -}, -{ -"tb": 87, -"tbk": 1, -"tl": 501, -"mb": 87, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -3357, -3358, -3359, -3360, -3361, -3362, -3363, -3364, -3365, -3366, -3367, -3368, -3369, -3370, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 324, -"tbk": 1, -"tl": 108, -"mb": 324, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -767, -768, -769, -770, -771, -772, -773, -61, -62, -63, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 480, -"tbk": 2, -"tl": 669, -"mb": 320, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1825, -1826, -1827, -1992, -1993, -1994, -1995, -1996, -1997, -1998, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 2778, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -2194, -2195, -2196, -2197, -2198, -2199, -2200, -2201, -2202, -172, -173, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 112, -"tbk": 3, -"tl": 20, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -1972, -1973, -1974, -1975, -1976, -1977, -1978, -1979, -1980, -1981, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 154, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -955, -956, -957, -958, -959, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 104, -"mb": 160, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -932, -933, -934, -935, -1598, -1599, -762, -763, -764, -765, -766, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 19, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -986, -987, -988, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 186, -"mb": 160, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1825, -1826, -1827, -1992, -1993, -1994, -1995, -1996, -1997, -1998, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 176, -"tbk": 16, -"tl": 673, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1061, -1062, -1063, -1064, -556, -576, -577, -578, -579, -580, -581, -198, -198, -199, -200, -201, -202, -128, -129, -130, -131, -132, -13, -14, -15 -] -}, -{ -"tb": 448, -"tbk": 3, -"tl": 75570904, -"mb": 256, -"mbk": 1, -"gb": 256, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1542, -1543, -1544, -1545, -1546, -1547, -1548, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -390, -391 -] -}, -{ -"tb": 8192, -"tbk": 41, -"tl": 3747487, -"mb": 768, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -791, -792, -793, -794, -795, -796, -797, -266, -267, -503, -504, -505, -506, -507, -508, -509, -510, -511, -512, -513, -514, -515, -516, -270, -271, -272, -24, -25 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2548, -2549, -2550, -2551, -11, -12, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 125, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -2426, -2427, -2428, -1324, -1325, -1326, -1327, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1110, -1111, -1112, -1113, -1054, -1055, -642, -643, -644, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 3288, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2008, -2009, -2010, -561, -562, -563, -564, -565, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 228, -"tbk": 1, -"tl": 75571588, -"mb": 228, -"mbk": 1, -"gb": 228, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -750, -751, -752, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -698, -391 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 607, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -861, -862, -863, -864, -865, -866, -867, -868, -556, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 60882, -"mb": 160, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1173, -1174, -1175, -1176, -1177, -1178, -762, -763, -764, -765, -766, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1903, -1904, -1905, -1906, -1907, -1908, -1909, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23 -] -}, -{ -"tb": 162, -"tbk": 2, -"tl": 577, -"mb": 108, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -3371, -3372, -3373, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 56, -"tbk": 1, -"tl": 75579187, -"mb": 56, -"mbk": 1, -"gb": 56, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -278, -279, -280, -281, -282, -283, -284, -285, -286, -287, -288, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 144, -"tbk": 1, -"tl": 75570502, -"mb": 144, -"mbk": 1, -"gb": 144, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -938, -939, -940, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -942, -391 -] -}, -{ -"tb": 320, -"tbk": 4, -"tl": 0, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1263, -1264, -1265, -1266, -1323, -937, -762, -763, -764, -765, -766, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 240, -"tbk": 2, -"tl": 75594335, -"mb": 192, -"mbk": 1, -"gb": 48, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -851, -852, -853, -854, -855, -856, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 1344, -"tbk": 3, -"tl": 669, -"mb": 768, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -946, -947, -948, -1760, -1761, -1762, -1763, -1764, -1765, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 2461, -"mb": 72, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1529, -1530, -1531, -1532, -1533, -561, -562, -563, -564, -565, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 192, -"tbk": 4, -"tl": 577, -"mb": 96, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1746, -1747, -1748, -1749, -1750, -716, -717, -718, -719, -720, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 27, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1731, -1732, -1733, -1734, -1735, -1736, -1737, -1738, -1739, -1740, -1741, -1742, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 196, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -861, -862, -863, -864, -865, -866, -867, -868, -556, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 954, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -19 -] -}, -{ -"tb": 2, -"tbk": 1, -"tl": 38, -"mb": 2, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -299, -300, -301, -302, -303, -304, -305, -306, -307, -308, -309, -310, -311, -312, -61, -62, -63, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1049, -1050, -1051, -1052, -1053, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 2660, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -2194, -2195, -2196, -2197, -2198, -2199, -2200, -2201, -2202, -172, -173, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 75570353, -"mb": 160, -"mbk": 1, -"gb": 160, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -750, -751, -752, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -941, -391 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 75630569, -"mb": 80, -"mbk": 1, -"gb": 80, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -65, -66, -67, -68, -69, -70, -71, -72, -73, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 1352, -"tbk": 1, -"tl": 121, -"mb": 1352, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -1103, -1104, -1105, -1106, -1107, -1108, -1109, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 9184, -"tbk": 15, -"tl": 4626, -"mb": 4096, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -824, -825, -826, -827, -191, -828, -829, -830, -831, -832, -833, -199, -200, -201, -202, -128, -129, -61, -62, -63 -] -}, -{ -"tb": 2048, -"tbk": 64, -"tl": 19832, -"mb": 416, -"mbk": 13, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -541, -542, -543, -544, -545, -1595, -1596, -1597, -191, -576, -577, -578, -579, -580, -581, -198, -776, -777, -778 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 1805, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -526, -527 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 1362, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -932, -933, -934, -935, -936, -937, -762, -763, -764, -765, -766, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 20412, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1386, -1387, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92 -] -}, -{ -"tb": 448, -"tbk": 7, -"tl": 186, -"mb": 448, -"mbk": 7, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -2348, -2349, -2350, -2351, -2352, -2353, -2354, -322, -323, -324, -325, -326, -327, -328, -13, -14, -15, -16, -17, -18, -116 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 75570380, -"mb": 160, -"mbk": 1, -"gb": 160, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -938, -939, -940, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -941, -391 -] -}, -{ -"tb": 178247040, -"tbk": 140, -"tl": 4140954, -"mb": 8912896, -"mbk": 1, -"gb": 8912896, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -1203, -2223, -2224, -2225, -3374, -3375, -3376, -1875, -1876, -1877, -1878, -1879, -1880, -1881, -1882, -1883, -1217, -225, -226, -227, -24, -25, -26 -] -}, -{ -"tb": 10, -"tbk": 1, -"tl": 77515149, -"mb": 10, -"mbk": 1, -"gb": 10, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -3377, -3378, -3379, -3380, -3381, -3382, -3383, -3384, -3385, -3386, -3387, -3388, -3389, -3390, -3391, -3392, -3393, -3394, -3395, -3396, -3397, -3398, -3399, -3400, -3401, -3402, -26 -] -}, -{ -"tb": 176, -"tbk": 18, -"tl": 8489, -"mb": 128, -"mbk": 12, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -1766, -1595, -1596, -1597, -556, -576, -577, -578, -579, -580, -581, -198, -198, -199, -200, -201, -202 -] -}, -{ -"tb": 560, -"tbk": 10, -"tl": 25459, -"mb": 560, -"mbk": 10, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1348, -1349, -1350, -1351, -1352, -1353, -1354, -1355, -1356, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 640, -"tbk": 1, -"tl": 0, -"mb": 640, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1637, -1638, -1639, -1640, -1641, -1642, -1643, -423, -424, -425, -426, -427, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 320000, -"tbk": 1, -"tl": 20261, -"mb": 320000, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2465, -2466, -2467, -2468, -2469, -2470, -2471, -2472, -2473, -2474, -189, -190, -191, -198, -192, -193, -194, -195, -196, -197, -198, -199, -200, -201, -202, -128, -129 -] -}, -{ -"tb": 384, -"tbk": 3, -"tl": 10480, -"mb": 384, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1236, -1237, -1238, -1239, -1240, -1241, -1242, -1243, -1244, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 69, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1290, -1291, -1292, -1293, -1294, -176, -177, -178, -179, -180, -181, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 568, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -678, -679, -680, -681, -682, -199, -200, -201, -202, -128, -129, -130, -131, -132, -13, -14, -15, -16, -17, -18, -298 -] -}, -{ -"tb": 424, -"tbk": 1, -"tl": 75571214, -"mb": 424, -"mbk": 1, -"gb": 424, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -938, -939, -940, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -390, -391 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 75580402, -"mb": 160, -"mbk": 1, -"gb": 160, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -645, -646, -647, -648, -649, -650, -651, -652, -650, -653, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75571102, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1274, -1275, -1276, -1277, -1278, -1279, -1280, -1281, -1282, -1283, -1284, -1285, -1286, -1287, -1288, -1289, -377, -378, -379, -380, -381, -382, -383, -384, -385, -386, -387, -388, -389, -390, -391 -] -}, -{ -"tb": 896, -"tbk": 3, -"tl": 75570061, -"mb": 512, -"mbk": 1, -"gb": 512, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -683, -684, -685, -686, -687, -688, -689, -690, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -753, -391 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 65, -"mb": 160, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -1103, -1104, -1105, -1106, -1107, -1108, -1109, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25 -] -}, -{ -"tb": 480, -"tbk": 2, -"tl": 0, -"mb": 320, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1825, -1826, -1827, -1828, -1829, -1830, -1831, -1832, -1833, -1834, -1835, -1836, -1837, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 75590663, -"mb": 80, -"mbk": 1, -"gb": 80, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1588, -1589, -1590, -1591, -1592, -1593, -1594, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 85, -"tbk": 29, -"tl": 21025, -"mb": 85, -"mbk": 29, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -228, -229, -230, -231, -232, -233, -234, -235, -236, -237, -238, -239, -240, -241, -242, -243, -244, -2793, -2794, -2795, -2796, -2797, -2798, -2799, -1844, -1845, -1846, -26 -] -}, -{ -"tb": 3840, -"tbk": 6, -"tl": 75579389, -"mb": 1536, -"mbk": 1, -"gb": 864, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1179, -1180, -1181, -1182, -1183, -1184, -1185, -1186, -61, -62, -63, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23 -] -}, -{ -"tb": 1350, -"tbk": 20, -"tl": 75571493, -"mb": 90, -"mbk": 1, -"gb": 90, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -3403, -3404, -3405, -3406, -3407, -3408, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 27, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -289, -290, -291, -292, -293, -294, -295, -296, -297, -61, -62, -63, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 2, -"tl": 370, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -576, -577, -578, -579, -580, -581, -834, -835, -836, -837, -838, -554, -555, -556, -198 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 2317, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -1137, -1138, -1139, -1140, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 2, -"tbk": 1, -"tl": 38, -"mb": 2, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -299, -300, -301, -302, -303, -304, -305, -306, -307, -308, -309, -310, -311, -312, -61, -62, -63, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 20, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1847, -1848, -1849, -1850, -1851, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23 -] -}, -{ -"tb": 17, -"tbk": 3, -"tl": 0, -"mb": 6, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -3409, -3410, -3411, -3412, -3413, -3414, -3415, -3416, -3417, -3418, -3419, -3420, -3421, -907, -908, -909, -910, -911, -912, -913, -914, -915, -916, -917, -918, -919, -920, -921, -922, -923, -924, -925, -926, -927, -928, -929, -930, -931, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 18, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -359, -360, -361, -362, -363, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 75600438, -"mb": 16, -"mbk": 1, -"gb": 16, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1197, -1198, -1199, -1200, -1201, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 48, -"tbk": 3, -"tl": 888, -"mb": 32, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -576, -577, -578, -579, -580, -581, -198, -198, -199, -200, -201, -202, -128, -129 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 75599522, -"mb": 16, -"mbk": 1, -"gb": 16, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1197, -1198, -1199, -1200, -1201, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 1448, -"tbk": 1, -"tl": 75571820, -"mb": 1448, -"mbk": 1, -"gb": 1448, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1268, -1269, -1270, -1271, -1272, -1273, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 3, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1110, -1111, -1112, -1113, -748, -749, -746, -747, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23 -] -}, -{ -"tb": 400, -"tbk": 1, -"tl": 75574429, -"mb": 400, -"mbk": 1, -"gb": 400, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -879, -880, -881, -882, -883, -884, -130, -131, -132, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75570326, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -596, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -941, -391, -609, -610, -611, -612 -] -}, -{ -"tb": 176, -"tbk": 1, -"tl": 75580526, -"mb": 176, -"mbk": 1, -"gb": 176, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1936, -1937, -1938, -1939, -1940, -1941, -1942, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 105, -"tbk": 2, -"tl": 114, -"mb": 70, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -1573, -1574, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576, -1575, -1576, -1577, -1578, -1579, -1580, -1581, -1582, -2639, -2640, -2641 -] -}, -{ -"tb": 24, -"tbk": 2, -"tl": 75581651, -"mb": 16, -"mbk": 1, -"gb": 8, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -517, -518, -519, -520, -521, -522, -523, -524, -525, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 212, -"tbk": 1, -"tl": 75571287, -"mb": 212, -"mbk": 1, -"gb": 212, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -750, -751, -752, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -390, -391 -] -}, -{ -"tb": 988, -"tbk": 2, -"tl": 77514231, -"mb": 988, -"mbk": 2, -"gb": 656, -"gbk": 1, -"eb": 656, -"ebk": 1, -"fs": [ -3422, -3423, -3424, -3425, -3426, -3427, -3428, -3429, -3430, -3431, -3432, -3433, -3434, -3435, -3436, -3437, -3438, -3439, -3440, -3441, -3442, -3443, -3444, -3445, -898, -899, -900, -901, -902, -903, -904, -905, -906, -907, -908, -909, -910, -911, -912, -913, -914, -915, -916, -917, -918, -919, -920 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 1574, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -3446, -3447, -3448, -3449, -3450, -3451, -3452, -3453, -3454, -3455, -3456, -3457, -3458, -3459, -3460, -138, -139, -140, -141, -142, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 112, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -774, -775, -199, -200, -201, -202, -128, -129, -61, -62, -63, -13, -14, -15, -16, -17, -18 -] -}, -{ -"tb": 648, -"tbk": 3, -"tl": 10549, -"mb": 648, -"mbk": 3, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1187, -1188, -1189, -1190, -1191, -1192, -1193, -1194, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 75575453, -"mb": 160, -"mbk": 1, -"gb": 160, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -645, -646, -647, -648, -649, -650, -651, -652, -650, -653, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 108, -"tbk": 1, -"tl": 75570297, -"mb": 108, -"mbk": 1, -"gb": 108, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1088, -1089, -1090, -1091, -1092, -1093, -1094, -1095, -1096, -1097, -1098, -1099, -1100, -1101, -1102, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -941, -391 -] -}, -{ -"tb": 212, -"tbk": 1, -"tl": 173, -"mb": 212, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -767, -768, -769, -770, -771, -772, -773, -130, -131, -132, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 4, -"tbk": 1, -"tl": 75612691, -"mb": 4, -"mbk": 1, -"gb": 4, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1030, -1031, -1032, -1033, -1034, -1035, -1036, -1037, -1038, -1039, -1040, -130, -131, -132, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -596, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -390 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 9257, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -861, -862, -863, -864, -865, -866, -867, -868, -556, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 0, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1583, -1584, -1585, -1586, -1587, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2548, -2549, -2550, -2551, -642, -643, -644, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 2688, -"tbk": 3, -"tl": 77512979, -"mb": 1536, -"mbk": 1, -"gb": 1536, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -3461, -3462, -3463, -3464, -3465, -3466, -3467, -3468, -3469, -2116, -2117, -2118, -2119, -2120, -2121, -2122, -2123, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 75571475, -"mb": 72, -"mbk": 1, -"gb": 72, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -441, -442, -443, -444, -445, -446, -447, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -698, -391 -] -}, -{ -"tb": 316, -"tbk": 1, -"tl": 75570261, -"mb": 316, -"mbk": 1, -"gb": 316, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -750, -751, -752, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -941, -391 -] -}, -{ -"tb": 4, -"tbk": 1, -"tl": 75588947, -"mb": 4, -"mbk": 1, -"gb": 4, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1030, -1031, -1032, -1033, -1034, -1035, -1036, -1037, -1038, -1039, -1040, -61, -62, -63, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75580951, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -278, -279, -280, -281, -282, -283, -284, -285, -286, -287, -288, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 67, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -289, -290, -291, -292, -293, -294, -295, -296, -297, -130, -131, -132, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 400, -"tbk": 1, -"tl": 75579379, -"mb": 400, -"mbk": 1, -"gb": 400, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -879, -880, -881, -882, -883, -884, -61, -62, -63, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 128, -"tbk": 1, -"tl": 20236, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -182, -183, -184, -185, -186, -187, -188, -189, -190, -191, -198, -192, -193, -194, -195, -196, -197, -198, -199, -200, -201, -202 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75569998, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -587, -588, -589, -590, -591, -592, -593, -594, -595, -596, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -753, -391, -609, -610, -611, -612 -] -}, -{ -"tb": 1920, -"tbk": 4, -"tl": 173, -"mb": 1024, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -93, -94, -95, -96, -97, -98, -99, -100, -101, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -298 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 0, -"mb": 160, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1825, -1826, -1827, -1828, -1829, -1830, -1831, -1832, -1833, -1834, -1835, -1836, -1837, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 3, -"tl": 64, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -746, -747, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 77515025, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -3470, -3471, -3472, -3473, -3474, -3475, -3476, -3477, -3478, -3479, -3480, -3481, -3482, -26 -] -}, -{ -"tb": 616, -"tbk": 2, -"tl": 75570932, -"mb": 616, -"mbk": 2, -"gb": 408, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1088, -1089, -1090, -1091, -1092, -1093, -1094, -1095, -1096, -1097, -1098, -1099, -3483, -3484, -3485, -3486, -2504, -2505, -2506, -2434, -2435, -379, -380, -381, -382, -383, -384, -385, -386, -387, -388, -389 -] -}, -{ -"tb": 1352, -"tbk": 1, -"tl": 29, -"mb": 1352, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -57, -58, -59, -60, -130, -131, -132, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 328, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -103, -104 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 75576420, -"mb": 48, -"mbk": 1, -"gb": 48, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -278, -279, -280, -281, -282, -283, -284, -285, -286, -287, -288, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 27, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1610, -1611, -1612, -1613, -1614, -1615, -130, -131, -132, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 1484, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -779, -780, -781, -782, -783, -784, -762, -763, -764, -765, -766, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 224, -"tbk": 6, -"tl": 384, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -824, -825, -826, -827, -549, -550, -551, -552, -553, -554, -555, -556, -828, -829, -830, -831, -832, -833, -199, -200, -201, -202 -] -}, -{ -"tb": 480, -"tbk": 2, -"tl": 223, -"mb": 320, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1825, -1826, -1827, -1992, -1993, -1994, -1995, -1996, -1997, -1998, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -474, -475, -1482, -1483, -1484, -1485, -13, -14, -15, -16, -17, -18, -298 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 75575633, -"mb": 32, -"mbk": 1, -"gb": 32, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1520, -1521, -1522, -1523, -1524, -1525, -1526, -1527, -1528, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 1352, -"tbk": 1, -"tl": 72902896, -"mb": 1352, -"mbk": 1, -"gb": 1352, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -938, -939, -940, -449, -450, -451, -452, -453, -454, -455, -456, -457, -458, -459, -460, -461, -462, -463, -464, -465, -223 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 75579834, -"mb": 96, -"mbk": 1, -"gb": 96, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1218, -1219, -1220, -1221, -1222, -1223, -1224, -130, -131, -132, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -596, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -698 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 148, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -576, -577, -578, -579, -580, -581, -198, -199, -200, -201, -202, -128, -129, -130, -131, -132 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 75581183, -"mb": 16, -"mbk": 1, -"gb": 16, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1197, -1198, -1199, -1200, -1201, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 120, -"tbk": 1, -"tl": 9, -"mb": 120, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1295, -1296, -1297, -1298, -1299, -1300, -1301, -1302, -1303, -1304, -1305, -1306, -1307, -1308, -1309, -1310, -1311, -1312, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 28, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -289, -290, -291, -292, -293, -294, -295, -296, -297, -61, -62, -63, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 164, -"tbk": 8, -"tl": 113, -"mb": 72, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -721, -722, -723, -724, -725, -726, -727, -728, -729, -730, -138, -139, -140, -141, -142, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 34, -"tbk": 1, -"tl": 77515108, -"mb": 34, -"mbk": 1, -"gb": 34, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -3487, -3488, -3489, -3490, -3491, -3492, -3493, -3494, -3495, -3496, -3497, -3498, -3499, -3500, -3501, -3502, -3503, -3504, -3505, -3506, -3507, -3508, -3509, -3510, -3511, -3512, -26 -] -}, -{ -"tb": 8, -"tbk": 1, -"tl": 927, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -861, -862, -863, -864, -865, -866, -867, -868, -556, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 4344, -"tbk": 6, -"tl": 75585599, -"mb": 1536, -"mbk": 1, -"gb": 1368, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1179, -1180, -1181, -1182, -1183, -1184, -1185, -1186, -130, -131, -132, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23 -] -}, -{ -"tb": 22, -"tbk": 1, -"tl": 1, -"mb": 22, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -2185, -2317, -2318, -2319, -2320, -2321, -2322, -2323, -2324, -2325, -2326, -3513, -3514, -3515, -2327, -2328, -2329, -2330, -2331, -3516, -3517, -3518, -3519, -26 -] -}, -{ -"tb": 32, -"tbk": 2, -"tl": 1814, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -198, -576, -577, -578, -579, -580, -581, -549, -550, -551, -552, -553, -554, -555, -198 -] -}, -{ -"tb": 40, -"tbk": 2, -"tl": 75579844, -"mb": 32, -"mbk": 1, -"gb": 8, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -845, -846, -847, -848, -849, -850, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23 -] -}, -{ -"tb": 228, -"tbk": 1, -"tl": 83, -"mb": 228, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -428, -429, -430, -431, -432, -433, -434, -435, -436, -437, -438, -439, -440, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 57, -"tbk": 2, -"tl": 118, -"mb": 38, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -1573, -1574, -1575, -1576, -1575, -1576, -1575, -1576, -1577, -1578, -1579, -1580, -1581, -1582, -1656, -1657, -1658, -270, -271, -272 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -596, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -941 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 1428, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1255, -1256, -1257, -1258, -937, -762, -763, -764, -765, -766, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 1384448, -"tbk": 11, -"tl": 75609892, -"mb": 524288, -"mbk": 1, -"gb": 336896, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -733, -734, -735, -736, -737, -738, -739, -740, -741, -742, -743, -744, -745, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 1926, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1173, -1174, -1175, -1176, -1177, -1178, -762, -763, -764, -765, -766, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 212, -"tbk": 1, -"tl": 20, -"mb": 212, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -57, -58, -59, -60, -130, -131, -132, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 2242, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -1794, -1795, -1796, -1797, -1798, -1799, -1800, -1801, -1802, -1803, -1804, -1805, -1806, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 768, -"tbk": 4, -"tl": 272, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -943, -944, -945, -1757, -1758, -1759, -762, -763, -764, -765, -766, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 8, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -2552, -2553, -2554, -2555, -2556, -2557, -2558, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 9, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -582, -583, -584, -585, -586, -61, -62, -63, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25 -] -}, -{ -"tb": 80, -"tbk": 2, -"tl": 75574529, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -998, -999, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 36, -"tbk": 1, -"tl": 75571961, -"mb": 36, -"mbk": 1, -"gb": 36, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -869, -870, -871, -872, -873, -874, -875, -876, -877, -878, -61, -62, -63, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 240, -"tbk": 2, -"tl": 75579843, -"mb": 192, -"mbk": 1, -"gb": 48, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -851, -852, -853, -854, -855, -856, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -298, -20, -21, -22, -23 -] -}, -{ -"tb": 640000, -"tbk": 2, -"tl": 2568, -"mb": 320000, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2465, -2466, -2467, -2468, -2469, -2470, -2471, -2472, -2473, -2474, -189, -190, -556, -198, -576, -577, -578, -579, -580, -581, -549, -550, -551, -552, -553, -554, -555, -198 -] -}, -{ -"tb": 79, -"tbk": 1, -"tl": 37, -"mb": 79, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -960, -961, -962, -963, -964, -965, -966, -967, -61, -62, -63, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 28, -"tbk": 1, -"tl": 18, -"mb": 28, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -57, -58, -59, -60, -130, -131, -132, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92 -] -}, -{ -"tb": 3936, -"tbk": 6, -"tl": 75577110, -"mb": 1536, -"mbk": 1, -"gb": 960, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1179, -1180, -1181, -1182, -1183, -1184, -1185, -1186, -130, -131, -132, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23 -] -}, -{ -"tb": 640000, -"tbk": 2, -"tl": 1855, -"mb": 320000, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2465, -2466, -2467, -2468, -2469, -2470, -2471, -2472, -2473, -2474, -189, -190, -549, -550, -551, -552, -553, -554, -555, -556, -198, -576, -577, -578, -579, -580, -581, -198 -] -}, -{ -"tb": 128, -"tbk": 1, -"tl": 337, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -989, -990, -991, -992, -993, -994, -995, -996, -997, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 183, -"tbk": 2, -"tl": 7, -"mb": 122, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -3520, -3521, -3522, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 10484480, -"tbk": 130, -"tl": 228550, -"mb": 524288, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2726, -2727, -2728, -2729, -2730, -2731, -2732, -2733, -2734, -2735, -2736, -2737, -2738, -2735, -2739, -2740, -2741, -1575, -1576, -1575, -1576, -1577, -1578, -1579, -1580, -1581, -1582, -2411, -2412, -504, -505, -506, -507, -508, -509, -510, -511, -512, -513, -514, -515, -516, -270, -271, -272, -24, -25 -] -}, -{ -"tb": 192, -"tbk": 1, -"tl": 0, -"mb": 192, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -2336, -2337, -2338, -2626, -2627, -2628, -2629, -2630, -2631, -2632, -1833, -1834, -1835, -1836, -1837, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 128, -"tbk": 2, -"tl": 258, -"mb": 128, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 448, -"tbk": 7, -"tl": 187, -"mb": 448, -"mbk": 7, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -2348, -2349, -2350, -2351, -2352, -2353, -2354, -322, -323, -324, -325, -326, -327, -328, -13, -14, -15, -16, -17, -18, -74 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 0, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -1171, -1172, -1114, -1115, -1116, -1117, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 1494, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -857, -858, -859, -860, -762, -763, -764, -765, -766, -16, -17, -18, -298, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 1477, -"tbk": 1, -"tl": 41, -"mb": 1477, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -960, -961, -962, -963, -964, -965, -966, -967, -61, -62, -63, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 616, -"tbk": 2, -"tl": 75571071, -"mb": 616, -"mbk": 2, -"gb": 408, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1088, -1089, -1090, -1091, -1092, -1093, -1094, -1095, -1096, -1097, -1098, -1099, -3483, -3484, -3485, -3486, -3280, -3281, -3282, -377, -378, -379, -380, -381, -382, -383, -384, -385, -386, -387, -388, -389 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 75587358, -"mb": 80, -"mbk": 1, -"gb": 80, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1588, -1589, -1590, -1591, -1592, -1593, -1594, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 72, -"tbk": 1, -"tl": 75570566, -"mb": 72, -"mbk": 1, -"gb": 72, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -441, -442, -443, -444, -445, -446, -447, -448, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -942, -391 -] -}, -{ -"tb": 5896, -"tbk": 1, -"tl": 72902795, -"mb": 5896, -"mbk": 1, -"gb": 5896, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -938, -939, -940, -1399, -1400, -1401, -1402, -1403, -1404, -1405, -1406, -457, -458, -459, -460, -461, -462, -463, -464, -465, -223 -] -}, -{ -"tb": 224, -"tbk": 3, -"tl": 2682, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -2656, -2657, -2658, -2659, -2660, -1595, -1596, -1597, -556, -198, -576, -577, -578, -579, -580, -581, -198 -] -}, -{ -"tb": 32, -"tbk": 2, -"tl": 364, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -198, -576, -577, -578, -579, -580, -581, -1568, -1569, -1570, -1571, -1572, -554, -555, -198 -] -}, -{ -"tb": 120, -"tbk": 2, -"tl": 75581905, -"mb": 96, -"mbk": 1, -"gb": 24, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -613, -614, -615, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 75630550, -"mb": 80, -"mbk": 1, -"gb": 80, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1588, -1589, -1590, -1591, -1592, -1593, -1594, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 176, -"tbk": 1, -"tl": 75583542, -"mb": 176, -"mbk": 1, -"gb": 176, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1936, -1937, -1938, -1939, -1940, -1941, -1942, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -474, -475, -1482, -1483, -1484, -1485, -13, -14, -15, -16, -17, -18, -88, -89 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 18, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -932, -933, -934, -935, -1598, -1599, -762, -763, -764, -765, -766, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 28, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1610, -1611, -1612, -1613, -1614, -1615, -61, -62, -63, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 640, -"tbk": 3, -"tl": 19, -"mb": 416, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -174, -175, -176, -177, -178, -179, -180, -181, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 3843, -"mb": 160, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -932, -933, -934, -935, -936, -937, -762, -763, -764, -765, -766, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 2, -"tl": 2409, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2023, -2024, -2025, -705, -706, -707, -708, -709, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 2, -"tl": 15651, -"mb": 32, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1565, -1566, -1567, -561, -562, -563, -564, -565, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 118436, -"tbk": 4, -"tl": 73716540, -"mb": 101392, -"mbk": 2, -"gb": 67592, -"gbk": 1, -"eb": 67592, -"ebk": 1, -"fs": [ -1486, -1487, -1488, -1489, -1490, -1491, -1492, -1493, -1494, -1495, -1496, -1497, -3523, -3524, -3525, -1501, -1502, -1503, -1504, -1505, -1506, -1507, -1508, -1509, -1510, -1511, -1512, -1513, -1514 -] -}, -{ -"tb": 224, -"tbk": 3, -"tl": 37, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1999, -2000, -2001, -2002, -2003, -2004, -2005, -2006, -2007, -322, -323, -324, -325, -326, -327, -328, -13, -14, -15, -16, -17, -18, -19 -] -}, -{ -"tb": 15727680, -"tbk": 140, -"tl": 20236173, -"mb": 786432, -"mbk": 1, -"gb": 786432, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -3283, -3284, -3285, -3526, -3527, -3528, -224, -225, -226, -227, -24, -25, -26 -] -}, -{ -"tb": 8064, -"tbk": 6, -"tl": 9, -"mb": 4096, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -791, -792, -793, -794, -795, -796, -797, -351, -352, -731, -732, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 320, -"tbk": 4, -"tl": 10850, -"mb": 320, -"mbk": 4, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1255, -1256, -1257, -1258, -937, -762, -763, -764, -765, -766, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 37, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1167, -1168, -1169, -1170, -11, -12, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 187, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -102, -61, -62, -63, -13, -14, -15, -16, -17, -18, -298 -] -}, -{ -"tb": 24, -"tbk": 1, -"tl": 75600465, -"mb": 24, -"mbk": 1, -"gb": 24, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -3529, -3530, -3531, -3532, -3533, -3534, -3535, -3536, -3537, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 144, -"tbk": 1, -"tl": 75570511, -"mb": 144, -"mbk": 1, -"gb": 144, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -938, -939, -940, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -942, -391 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 206, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1746, -1747, -1748, -1749, -1750, -716, -717, -718, -719, -720, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 3968, -"tbk": 5, -"tl": 708, -"mb": 2048, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -93, -94, -95, -96, -97, -98, -99, -100, -101, -102, -130, -131, -132, -13, -14, -15, -16, -17, -18, -103, -104 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 31, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -359, -360, -361, -362, -363, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92 -] -}, -{ -"tb": 1104, -"tbk": 2, -"tl": 679, -"mb": 736, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1388, -1389, -1390, -1391, -1392, -1393, -1394, -1395, -1396, -1397, -1398, -1844, -1845, -1846, -26 -] -}, -{ -"tb": 48, -"tbk": 1, -"tl": 0, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1515, -1516, -1517, -1518, -1519, -176, -177, -178, -179, -180, -181, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 958, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -774, -775, -839, -840, -841, -842, -843, -844, -776, -777, -778, -839, -840, -841, -842, -843, -844, -199, -200, -201, -202, -128, -129 -] -}, -{ -"tb": 135, -"tbk": 2, -"tl": 10, -"mb": 90, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -2916, -2917, -3538, -3539, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 25603840, -"tbk": 400060, -"tl": 2777471, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -3540, -3541, -3542, -3543, -3544, -3545, -3546, -3547, -3548, -3549, -3550, -1514, -2081, -2082, -2083, -24, -25, -26 -] -}, -{ -"tb": 316, -"tbk": 1, -"tl": 18, -"mb": 316, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -51, -52, -53, -54, -55, -56, -57, -58, -59, -60, -61, -62, -63, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23 -] -}, -{ -"tb": 350, -"tbk": 30, -"tl": 1059167, -"mb": 20, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -1573, -1574, -1575, -1576, -1577, -1578, -1579, -1580, -1581, -1582, -2411, -2412, -504, -505, -506, -507, -508, -509, -510, -511, -512, -513, -514, -515, -516, -270, -271, -272, -24, -25 -] -}, -{ -"tb": 2, -"tbk": 1, -"tl": 37, -"mb": 2, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -299, -300, -301, -302, -303, -304, -305, -306, -307, -308, -309, -310, -311, -312, -61, -62, -63, -13, -14, -15, -16, -17, -18, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 320000, -"tbk": 1, -"tl": 517, -"mb": 320000, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2465, -2466, -2467, -2468, -2469, -2470, -2471, -2472, -2473, -2474, -189, -190, -556, -576, -577, -578, -579, -580, -581, -198, -199, -200, -201, -202, -128, -129, -130, -131, -132 -] -}, -{ -"tb": 400060, -"tbk": 200030, -"tl": 18768, -"mb": 2, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2527, -2528, -2529, -2530, -2531, -2532, -2533, -2534, -3551, -3552, -3553, -3554, -2084, -2085, -2086, -2087, -2088, -2089, -2090, -2091, -2092, -2093, -2094, -2095, -2092, -2096, -2097, -1708, -223, -224, -225, -226, -227, -24, -25, -26 -] -}, -{ -"tb": 4709800, -"tbk": 581900, -"tl": 7816222, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -3555, -3556, -3557, -3558, -3559, -3560, -3561, -3562, -3563, -3564, -3234, -3235, -3236, -3237, -3238, -3239, -3240, -3241, -2850, -2851, -2852, -2853, -2854, -2855, -2856, -2857, -2858, -2859, -2860, -2861, -2862, -2863, -2864, -2865, -1883, -1217 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 9, -"mb": 160, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1825, -1826, -1827, -1828, -1829, -1830, -1831, -1832, -1833, -1834, -1835, -1836, -1837, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 366, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -2231, -2232, -2233, -2234, -576, -577, -578, -579, -580, -581, -198, -198, -199, -200, -201, -202, -128, -129 -] -}, -{ -"tb": 336, -"tbk": 7, -"tl": 0, -"mb": 48, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1515, -1516, -1517, -1518, -1519, -176, -177, -178, -179, -180, -181, -16, -17, -18, -74, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -474, -475, -476, -477, -478, -479, -13, -14, -15, -16, -17, -18, -88, -89 -] -}, -{ -"tb": 7824, -"tbk": 7, -"tl": 75571923, -"mb": 3072, -"mbk": 1, -"gb": 1776, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1179, -1180, -1181, -1182, -1183, -1184, -1185, -1186, -61, -62, -63, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25 -] -}, -{ -"tb": 720, -"tbk": 2, -"tl": 10, -"mb": 704, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -174, -175, -176, -177, -178, -179, -180, -181, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 160, -"tbk": 1, -"tl": 45, -"mb": 160, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1825, -1826, -1827, -1992, -1993, -1994, -1995, -1996, -1997, -1998, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 16000, -"tbk": 1, -"tl": 9223, -"mb": 16000, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1956, -1957, -1958, -1959, -1960, -1961, -1962, -1963, -1964, -1965, -1966, -556, -828, -829, -830, -831, -832, -833, -199, -200, -201, -202, -128, -129, -61, -62, -63, -13, -14, -15, -16, -17, -18, -88, -89 -] -}, -{ -"tb": 228, -"tbk": 1, -"tl": 75571606, -"mb": 228, -"mbk": 1, -"gb": 228, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -938, -939, -940, -691, -692, -693, -694, -695, -696, -697, -457, -458, -604, -605, -606, -607, -608, -698, -391 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 31052, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -2194, -2195, -2196, -2197, -2198, -2199, -2200, -2201, -2202, -172, -173, -88, -89, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 320, -"tbk": 4, -"tl": 11318, -"mb": 320, -"mbk": 4, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1173, -1174, -1175, -1176, -1177, -1178, -762, -763, -764, -765, -766, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 960, -"tbk": 4, -"tl": 2551, -"mb": 512, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -2235, -2236, -2237, -2238, -2239, -2240, -2241, -16, -17, -18, -103, -104, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 832, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2668, -2669, -2670, -2671, -2672, -2673, -2674, -2675, -2676, -2677, -2678, -2679, -1844, -1845, -1846, -26 -] -}, -{ -"tb": 32, -"tbk": 1, -"tl": 57, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -1606, -1607, -1608, -1609, -130, -131, -132, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 144, -"tbk": 1, -"tl": 75570493, -"mb": 144, -"mbk": 1, -"gb": 144, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -785, -786, -787, -788, -789, -790, -750, -751, -752, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -942, -391 -] -}, -{ -"tb": 48, -"tbk": 3, -"tl": 2929, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -276, -277, -198, -576, -577, -578, -579, -580, -581, -198, -199, -200, -201, -202, -128, -129 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 2687, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -117, -118, -119, -273, -274, -275, -774, -775, -192, -193, -194, -195, -196, -197, -198, -198, -199, -200, -201, -202, -128, -129 -] -}, -{ -"tb": 7944, -"tbk": 7, -"tl": 75576666, -"mb": 3072, -"mbk": 1, -"gb": 1896, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -1179, -1180, -1181, -1182, -1183, -1184, -1185, -1186, -61, -62, -63, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 27, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1610, -1611, -1612, -1613, -1614, -1615, -130, -131, -132, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 75571332, -"mb": 80, -"mbk": 1, -"gb": 80, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -2390, -2391, -2392, -2393, -2394, -2395, -2396, -2397, -2398, -457, -458, -604, -605, -606, -607, -608, -390, -391, -609, -610, -611, -612, -24, -25, -26 -] -}, -{ -"tb": 9, -"tbk": 1, -"tl": 9, -"mb": 9, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -466, -467, -468, -469, -470, -471, -472, -473, -596, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -698 -] -}, -{ -"tb": 4, -"tbk": 1, -"tl": 75571998, -"mb": 4, -"mbk": 1, -"gb": 4, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1030, -1031, -1032, -1033, -1034, -1035, -1036, -1037, -1038, -1039, -1040, -61, -62, -63, -13, -14, -15, -16, -17, -18, -208, -209, -210, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 6, -"tl": 507, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1061, -1062, -1063, -1064, -556, -198, -576, -577, -578, -579, -580, -581, -834, -835, -836, -837, -838, -554, -555, -198, -576, -577, -578, -579, -580, -581, -198 -] -}, -{ -"tb": 80, -"tbk": 2, -"tl": 75577197, -"mb": 64, -"mbk": 1, -"gb": 64, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -998, -999, -616, -617, -618, -619, -130, -131, -132, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 256, -"tbk": 2, -"tl": 15837, -"mb": 256, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1236, -1237, -1238, -1239, -1946, -1947, -1948, -1949, -1950, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 2, -"tbk": 1, -"tl": 36, -"mb": 2, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -299, -300, -301, -302, -303, -304, -305, -306, -307, -308, -309, -310, -311, -312, -130, -131, -132, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 576, -"tbk": 4, -"tl": 13672, -"mb": 576, -"mbk": 4, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -557, -558, -559, -560, -561, -562, -563, -564, -565, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 135, -"tbk": 2, -"tl": 17, -"mb": 90, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1407, -1408, -1409, -1410, -1411, -1412, -1413, -1414, -1415, -1416, -1417, -1418, -2916, -2917, -3565, -3566, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 64, -"tbk": 1, -"tl": 7794, -"mb": 64, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -675, -676, -677, -1137, -1138, -1139, -1140, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 3, -"tl": 0, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1110, -1111, -1112, -1113, -748, -749, -746, -747, -748, -749, -11, -12, -13, -14, -15, -16, -17, -18, -74, -20, -21, -22, -23 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 15329, -"mb": 160, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -133, -134, -135, -136, -2245, -138, -139, -140, -141, -142, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 40, -"tbk": 1, -"tl": 75576549, -"mb": 40, -"mbk": 1, -"gb": 40, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1118, -1119, -1120, -1121, -1122, -1123, -16, -17, -18, -19, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 10, -"tbk": 10, -"tl": 1060440, -"mb": 1, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -3567, -3568, -3569, -3570, -3571, -3572, -3573, -3574, -3575, -3576, -3577, -3578, -3579, -3580, -3581, -503, -504, -505, -506, -507, -508, -509, -510, -511, -512, -513, -514, -515, -516, -270, -271, -272, -24, -25, -26 -] -}, -{ -"tb": 4, -"tbk": 1, -"tl": 75585740, -"mb": 4, -"mbk": 1, -"gb": 4, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1030, -1031, -1032, -1033, -1034, -1035, -1036, -1037, -1038, -1039, -1040, -130, -131, -132, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 96, -"tbk": 1, -"tl": 375, -"mb": 96, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -329, -330, -331, -353, -354, -355, -356, -357, -358, -1370, -1371, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 28, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -203, -204, -205, -206, -207, -110, -111, -112, -113, -114, -115, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 63, -"tbk": 3, -"tl": 75570962, -"mb": 36, -"mbk": 1, -"gb": 36, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -49, -50, -1855, -1856, -1857, -1858, -1859, -1860, -1861, -1862, -1863, -2429, -2430, -2431, -2432, -2433, -2434, -2435, -379, -380, -381, -382, -383, -384, -385, -386, -387, -388, -389 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 0, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1255, -1256, -1257, -1258, -1324, -1325, -1326, -1327, -13, -14, -15, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 224, -"tbk": 3, -"tl": 173, -"mb": 128, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -48, -538, -539, -540, -2656, -2657, -2658, -2659, -2660, -1595, -1596, -1597, -556, -576, -577, -578, -579, -580, -581, -198, -199, -200, -201, -202 -] -}, -{ -"tb": 150, -"tbk": 4, -"tl": 378, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -47, -480, -2451, -2452, -3582, -3583, -3584, -3585, -3586, -3587, -3588, -3589, -3590, -3591, -3592, -3593, -3594, -3595, -3596, -3597, -3598, -3599, -3600, -914, -915, -916, -917, -918, -919, -920, -921, -922, -923, -924, -925, -926, -927, -928, -929, -930, -931, -26 -] -}, -{ -"tb": 400, -"tbk": 1, -"tl": 75573992, -"mb": 400, -"mbk": 1, -"gb": 400, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -879, -880, -881, -882, -883, -884, -61, -62, -63, -13, -14, -15, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 3200000, -"tbk": 100000, -"tl": 9502, -"mb": 32, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -2586, -2587, -2588, -2589, -2590, -2591, -2592, -2593, -2594, -2595, -2596, -2597, -941, -391, -609, -610, -611, -612, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 1, -"tl": 122, -"mb": 16, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -1247, -1248, -1249, -1250, -1251, -1252, -1253, -1254, -191, -199, -200, -201, -202, -128, -129, -61, -62, -63, -13, -14, -15, -16, -17, -18, -143, -144, -90, -91, -92 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 70, -"mb": 80, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -203, -204, -205, -206, -207, -110, -111, -112, -113, -114, -115, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 16, -"tbk": 2, -"tl": 1860, -"mb": 8, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -566, -567, -568, -569, -570, -571, -572, -573, -574, -1766, -546, -547, -548, -556, -198, -576, -577, -578, -579, -580, -581, -549, -550, -551, -552, -553, -554, -555 -] -}, -{ -"tb": 2, -"tbk": 1, -"tl": 37, -"mb": 2, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -299, -300, -301, -302, -303, -304, -305, -306, -307, -308, -309, -310, -311, -312, -61, -62, -63, -13, -14, -15, -16, -17, -18, -64, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 80, -"tbk": 1, -"tl": 75598900, -"mb": 80, -"mbk": 1, -"gb": 80, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1588, -1589, -1590, -1591, -1592, -1593, -1594, -16, -17, -18, -526, -527, -90, -91, -92, -24, -25, -26 -] -}, -{ -"tb": 160, -"tbk": 2, -"tl": 4104, -"mb": 160, -"mbk": 2, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -779, -780, -781, -782, -783, -784, -762, -763, -764, -765, -766, -16, -17, -18, -116, -20, -21, -22, -23, -24, -25, -26 -] -}, -{ -"tb": 108, -"tbk": 1, -"tl": 75570206, -"mb": 108, -"mbk": 1, -"gb": 108, -"gbk": 1, -"eb": 0, -"ebk": 0, -"fs": [ -1088, -1089, -1090, -1091, -1092, -1093, -1094, -1095, -1096, -1097, -1098, -1099, -1100, -1101, -1102, -448, -597, -598, -599, -600, -601, -602, -603, -457, -458, -604, -605, -606, -607, -608, -941, -391 -] -}, -{ -"tb": 40, -"tbk": 1, -"tl": 9, -"mb": 40, -"mbk": 1, -"gb": 0, -"gbk": 0, -"eb": 0, -"ebk": 0, -"fs": [ -3601, -3602, -907, -908, -909, -910, -911, -912, -913, -914, -915, -916, -917, -918, -919, -920, -921, -922, -923, -924, -925, -926, -927, -928, -929, -930, -931, -26 -] -} -], -"ftbl": [ -"[root]", -"0x10458d1c0: ::allocate (alloc/src/alloc.rs:250:14)", -"0x10458d1c0: alloc::raw_vec::RawVecInner
::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x10458d1c0: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x10458d1c0: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x10458d1c0: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x10458d1c0: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x10458d1c0: regex_syntax::hir::literal::Seq::cross_forward (src/hir/literal.rs:965:44)", -"0x10458d1c0: regex_syntax::hir::literal::Extractor::cross (src/hir/literal.rs:567:18)", -"0x10458be84: regex_syntax::hir::literal::Extractor::extract_concat (src/hir/literal.rs:407:24)", -"0x10458be84: regex_syntax::hir::literal::Extractor::extract (src/hir/literal.rs:189:45)", -"0x104548560: regex_automata::util::prefilter::prefixes (util/prefilter/mod.rs:658:39)", -"0x104548560: regex_automata::meta::strategy::new (src/meta/strategy.rs:112:24)", -"0x10454786c: regex_automata::meta::regex::Builder::build_many_from_hir (src/meta/regex.rs:3610:21)", -"0x10454786c: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3498:14)", -"0x10454786c: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x1045f1d60: regex::builders::Builder::build_one_string (regex-1.12.2/src/builders.rs:82:14)", -"0x1045f1d60: regex::builders::string::RegexBuilder::build (regex-1.12.2/src/builders.rs:233:26)", -"0x1045f1d60: regex::regex::string::Regex::new (src/regex/string.rs:181:31)", -"0x1045ecc2c: grimoire_css_lib::core::parser::parser_base::Parser::new (core/parser/parser_base.rs:35:38)", -"0x1042139ec: grimoire_css_lib::core::parser::parser_fs::ParserFs::new (core/parser/parser_fs.rs:37:26)", -"0x1042139ec: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::new (core/css_builder/css_builder_fs.rs:57:22)", -"0x1042139ec: grimoire_css_lib::commands::build::build (src/commands/build.rs:37:5)", -"0x1042139ec: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", -"0x104259664: grimoire_css_lib::start (grimoire-css/src/lib.rs:75:5)", -"0x104259664: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:164:11)", -"0x1040b9180: grimoire_css::main (grimoire-css/src/main.rs:32:8)", -"0x1040f1e14: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1040f1e14: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x1040f1e14: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x1040f1e14: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x1040f1e14: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1040f1e14: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x1040f1e14: nom::multi::many0::{{closure}} (src/multi/mod.rs:60:19)", -"0x1040f1e14: >::parse (nom-7.1.3/src/internal.rs:325:5)", -"0x1040f1e14: <(FnA,FnB) as nom::sequence::Tuple>::parse (src/sequence/mod.rs:246:28)", -"0x1040f1e14: nom::sequence::tuple::{{closure}} (src/sequence/mod.rs:278:17)", -"0x1040f1e14: nom::combinator::all_consuming::{{closure}} (src/combinator/mod.rs:390:26)", -"0x1040f1e14: nom::combinator::map::{{closure}} (src/combinator/mod.rs:79:30)", -"0x1040f1e14: browserslist::parser::parse_browserslist_query (browserslist-rs-0.19.0/src/parser.rs:452:5)", -"0x10425857c: browserslist::resolve (browserslist-rs-0.19.0/src/lib.rs:107:24)", -"0x10425857c: lightningcss::targets::Browsers::from_browserslist_with_config (lightningcss-1.0.0-alpha.68/src/targets.rs:64:25)", -"0x10425857c: lightningcss::targets::Browsers::from_browserslist (lightningcss-1.0.0-alpha.68/src/targets.rs:54:5)", -"0x10425857c: grimoire_css_lib::infrastructure::lightning_css_optimizer::LightningCssOptimizer::from_content (src/infrastructure/lightning_css_optimizer.rs:27:24)", -"0x10425857c: grimoire_css_lib::infrastructure::lightning_css_optimizer::LightningCssOptimizer::new (src/infrastructure/lightning_css_optimizer.rs:59:9)", -"0x10425857c: grimoire_css_lib::start (grimoire-css/src/lib.rs:73:25)", -"0x10425857c: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:164:11)", -"0x10413e3c4: ::alloc (dhat-0.3.3/src/lib.rs:1176:9)", -"0x1045f6460: alloc::raw_vec::finish_grow (src/raw_vec/mod.rs:0:0)", -"0x1045f3c3c: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x1045f3c3c: alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle (src/raw_vec/mod.rs:557:35)", -"0x10452f018: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", -"0x10452f018: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", -"0x10452f018: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", -"0x10452f018: alloc::vec::Vec::extend_with (src/vec/mod.rs:3355:14)", -"0x10452f018: alloc::vec::Vec::resize (src/vec/mod.rs:3234:18)", -"0x10452f018: regex_automata::util::sparse_set::SparseSet::resize (src/util/sparse_set.rs:137:21)", -"0x104552d80: regex_automata::util::sparse_set::SparseSet::new (src/util/sparse_set.rs:119:13)", -"0x104552d80: regex_automata::nfa::thompson::nfa::Inner::into_nfa (nfa/thompson/nfa.rs:1278:24)", -"0x104552d80: regex_automata::nfa::thompson::builder::Builder::build (nfa/thompson/builder.rs:592:29)", -"0x104552d80: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:1012:14)", -"0x104549ca0: regex_automata::nfa::thompson::compiler::Compiler::build_many_from_hir (nfa/thompson/compiler.rs:903:14)", -"0x104549ca0: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:519:22)", -"0x104549ca0: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", -"0x1045ecbc0: grimoire_css_lib::core::parser::parser_base::Parser::new (core/parser/parser_base.rs:32:32)", -"0x104547514: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104547514: alloc::boxed::Box::try_new_uninit_in (alloc/src/boxed.rs:508:19)", -"0x104547514: alloc::boxed::Box::new_uninit_in (alloc/src/boxed.rs:474:15)", -"0x104547514: as core::clone::Clone>::clone (alloc/src/boxed.rs:1739:25)", -"0x104547514: ::clone (src/hir/mod.rs:1963:10)", -"0x104547514: regex_automata::meta::regex::RegexInfo::new (src/meta/regex.rs:1940:41)", -"0x104547514: regex_automata::meta::regex::Builder::build_many_from_hir (src/meta/regex.rs:3609:20)", -"0x104547514: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3498:14)", -"0x104547514: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x1045ecbe4: grimoire_css_lib::core::parser::parser_base::Parser::new (core/parser/parser_base.rs:33:27)", -"0x1045473c8: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1045473c8: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x1045473c8: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x1045473c8: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x1045473c8: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1045473c8: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x1045473c8: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:54:33)", -"0x1045473c8: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x1045473c8: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x1045473c8: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x1045473c8: regex_automata::meta::regex::Builder::build_many_from_hir (src/meta/regex.rs:3608:67)", -"0x1045473c8: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3498:14)", -"0x1045473c8: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x1045ec970: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::new (core/css_generator/css_generator_base.rs:64:30)", -"0x1045ec970: grimoire_css_lib::core::css_builder::css_builder_base::CssBuilder::new (core/css_builder/css_builder_base.rs:46:29)", -"0x104211d6c: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::new (core/css_builder/css_builder_fs.rs:56:27)", -"0x104211d6c: grimoire_css_lib::commands::build::build (src/commands/build.rs:37:5)", -"0x104211d6c: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", -"0x10452df94: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x10452df94: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x10452df94: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x104530e68: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x104530e68: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x104530e68: regex_automata::nfa::thompson::builder::Builder::add (nfa/thompson/builder.rs:1118:21)", -"0x1045306cc: regex_automata::nfa::thompson::builder::Builder::add_union_reverse (nfa/thompson/builder.rs:743:14)", -"0x1045306cc: regex_automata::nfa::thompson::compiler::Compiler::add_union_reverse (nfa/thompson/compiler.rs:1682:35)", -"0x1045306cc: regex_automata::nfa::thompson::compiler::Compiler::c_at_least (nfa/thompson/compiler.rs:1265:26)", -"0x1045510d0: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:997:18)", -"0x1045ec9f0: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::new (core/css_generator/css_generator_base.rs:70:13)", -"0x1045ec9f0: grimoire_css_lib::core::css_builder::css_builder_base::CssBuilder::new (core/css_builder/css_builder_base.rs:46:29)", -"0x1045934a8: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x1045934a8: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x1045934a8: regex_syntax::hir::Properties::empty (src/hir/mod.rs:2429:20)", -"0x1045934a8: regex_syntax::hir::Hir::empty (src/hir/mod.rs:259:21)", -"0x1045934a8: ::drop (src/hir/mod.rs:0:0)", -"0x1045313c4: core::ptr::drop_in_place (src/ptr/mod.rs:804:1)", -"0x1045313c4: core::ptr::drop_in_place<[regex_syntax::hir::Hir]> (src/ptr/mod.rs:804:1)", -"0x1045313c4: as core::ops::drop::Drop>::drop (src/vec/mod.rs:3999:13)", -"0x1045313c4: core::ptr::drop_in_place> (src/ptr/mod.rs:804:1)", -"0x104547a50: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3499:5)", -"0x104547a50: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x1045ecc50: grimoire_css_lib::core::parser::parser_base::Parser::new (core/parser/parser_base.rs:36:33)", -"0x10452e32c: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x10452e32c: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x10452e32c: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x104570504: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x104570504: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x104570504: regex_automata::nfa::thompson::builder::Builder::start_pattern (nfa/thompson/builder.rs:630:28)", -"0x104570504: regex_automata::nfa::thompson::compiler::Compiler::start_pattern (nfa/thompson/compiler.rs:1641:35)", -"0x104570504: regex_automata::nfa::thompson::compiler::Compiler::compile::{{closure}} (nfa/thompson/compiler.rs:1001:26)", -"0x104570504: core::ops::function::impls:: for &mut F>::call_once (src/ops/function.rs:313:21)", -"0x104570504: core::option::Option::map (core/src/option.rs:1158:29)", -"0x104570504: as core::iter::traits::iterator::Iterator>::next (iter/adapters/map.rs:107:26)", -"0x104551118: regex_automata::nfa::thompson::compiler::Compiler::c_alt_iter (nfa/thompson/compiler.rs:1110:30)", -"0x104551118: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:1000:29)", -"0x104548bf4: regex_automata::nfa::thompson::compiler::Compiler::build_many_from_hir (nfa/thompson/compiler.rs:903:14)", -"0x104548bf4: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:471:14)", -"0x104548bf4: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", -"0x104597590: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x104597590: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x104597590: regex_syntax::hir::Properties::class (src/hir/mod.rs:2467:20)", -"0x104597590: regex_syntax::hir::Hir::class (src/hir/mod.rs:365:21)", -"0x104591164: ::visit_post (src/hir/translate.rs:0:0)", -"0x104546e50: regex_syntax::ast::visitor::HeapVisitor::visit (src/ast/visitor.rs:224:21)", -"0x104546e50: regex_syntax::ast::visitor::visit (src/ast/visitor.rs:119:24)", -"0x104546e50: regex_syntax::hir::translate::Translator::translate (src/hir/translate.rs:174:9)", -"0x104546e50: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3494:18)", -"0x104546e50: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x1045ec9a0: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::new (core/css_generator/css_generator_base.rs:67:25)", -"0x1045ec9a0: grimoire_css_lib::core::css_builder::css_builder_base::CssBuilder::new (core/css_builder/css_builder_base.rs:46:29)", -"0x1045f17c0: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1045f17c0: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x1045f17c0: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x1045f17c0: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x1045f17c0: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1045f17c0: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x1045f17c0: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x1045f17c0: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x1045f17c0: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", -"0x1045f17c0: alloc::str::::to_owned (alloc/src/str.rs:211:62)", -"0x1045f17c0: >::from (alloc/src/string.rs:3056:11)", -"0x1045f17c0: ::spec_to_string (alloc/src/string.rs:2977:21)", -"0x1045f17c0: ::to_string (alloc/src/string.rs:2809:9)", -"0x1045f17c0: regex::builders::Builder::new::{{closure}} (regex-1.12.2/src/builders.rs:66:63)", -"0x1045f17c0: core::iter::adapters::map::map_fold::{{closure}} (iter/adapters/map.rs:88:28)", -"0x1045f17c0: core::ops::try_trait::NeverShortCircuit::wrap_mut_2::{{closure}} (src/ops/try_trait.rs:401:39)", -"0x1045f17c0: core::array::iter::iter_inner::PolymorphicIter<[core::mem::maybe_uninit::MaybeUninit]>::try_fold::{{closure}} (array/iter/iter_inner.rs:220:13)", -"0x1045f17c0: ::try_fold (src/ops/index_range.rs:169:21)", -"0x1045f17c0: core::array::iter::iter_inner::PolymorphicIter<[core::mem::maybe_uninit::MaybeUninit]>::try_fold (array/iter/iter_inner.rs:215:20)", -"0x1045f17c0: core::array::iter::iter_inner::PolymorphicIter<[core::mem::maybe_uninit::MaybeUninit]>::fold (array/iter/iter_inner.rs:202:14)", -"0x1045f17c0: as core::iter::traits::iterator::Iterator>::fold (src/array/iter.rs:253:27)", -"0x1045f17c0: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/map.rs:128:19)", -"0x1045f17c0: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", -"0x1045f17c0: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3774:26)", -"0x1045f17c0: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", -"0x1045f17c0: as core::iter::traits::collect::Extend>::extend (src/vec/mod.rs:3702:9)", -"0x1045f17c0: regex::builders::Builder::new (regex-1.12.2/src/builders.rs:66:16)", -"0x1045f1a70: regex::builders::string::RegexBuilder::new (regex-1.12.2/src/builders.rs:224:37)", -"0x1045f1a70: regex::regex::string::Regex::new (src/regex/string.rs:181:9)", -"0x104580b18: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x104580b18: ::drop (src/ast/mod.rs:1657:25)", -"0x104531ff8: core::ptr::drop_in_place (src/ptr/mod.rs:804:1)", -"0x104547a6c: core::ptr::drop_in_place<[regex_syntax::ast::Ast]> (src/ptr/mod.rs:804:1)", -"0x104547a6c: as core::ops::drop::Drop>::drop (src/vec/mod.rs:3999:13)", -"0x104547a6c: core::ptr::drop_in_place> (src/ptr/mod.rs:804:1)", -"0x104547a6c: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3499:5)", -"0x104547a6c: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x10452dc10: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x10452dc10: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x10452dc10: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x104538928: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x104538928: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x104538928: regex_automata::nfa::thompson::compiler::Utf8Compiler::add_empty (nfa/thompson/compiler.rs:1863:31)", -"0x104538928: regex_automata::nfa::thompson::compiler::Utf8Compiler::new (nfa/thompson/compiler.rs:1791:15)", -"0x104535bec: regex_automata::nfa::thompson::compiler::Compiler::c_unicode_class (nfa/thompson/compiler.rs:1462:17)", -"0x104535bec: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1026:50)", -"0x1045304f8: regex_automata::nfa::thompson::compiler::Compiler::c_at_least (nfa/thompson/compiler.rs:1301:33)", -"0x104533c4c: regex_automata::nfa::thompson::compiler::Compiler::c::{{closure}} (nfa/thompson/compiler.rs:1030:68)", -"0x104533c4c: core::ops::function::impls:: for &mut F>::call_once (src/ops/function.rs:313:21)", -"0x104533c4c: core::option::Option::map (core/src/option.rs:1158:29)", -"0x104533c4c: as core::iter::traits::iterator::Iterator>::next (iter/adapters/map.rs:107:26)", -"0x104533c4c: regex_automata::nfa::thompson::compiler::Compiler::c_concat (nfa/thompson/compiler.rs:1045:71)", -"0x104533c4c: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1030:36)", -"0x104533528: regex_automata::nfa::thompson::compiler::Compiler::c_cap (nfa/thompson/compiler.rs:1157:26)", -"0x104570544: regex_automata::nfa::thompson::compiler::Compiler::compile::{{closure}} (nfa/thompson/compiler.rs:1002:28)", -"0x104570544: core::ops::function::impls:: for &mut F>::call_once (src/ops/function.rs:313:21)", -"0x104570544: core::option::Option::map (core/src/option.rs:1158:29)", -"0x104570544: as core::iter::traits::iterator::Iterator>::next (iter/adapters/map.rs:107:26)", -"0x1045933a8: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x1045933a8: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x1045933a8: regex_syntax::hir::Properties::empty (src/hir/mod.rs:2429:20)", -"0x1045933a8: regex_syntax::hir::Hir::empty (src/hir/mod.rs:259:21)", -"0x1045933a8: ::drop (src/hir/mod.rs:1931:49)", -"0x104213a5c: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::new (core/css_builder/css_builder_fs.rs:58:32)", -"0x104213a5c: grimoire_css_lib::commands::build::build (src/commands/build.rs:37:5)", -"0x104213a5c: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", -"0x1041720f0: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1041720f0: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x1041720f0: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x1041720f0: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x1041720f0: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1041720f0: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x1041720f0: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:31:34)", -"0x1041720f0: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x1041720f0: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x1041720f0: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x104224190: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::adapt_targets (core/css_generator/css_generator_base.rs:351:50)", -"0x104224190: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::generate_css (core/css_generator/css_generator_base.rs:176:22)", -"0x1042226bc: grimoire_css_lib::core::css_builder::css_builder_base::CssBuilder::build_joined_css_and_pieces (core/css_builder/css_builder_base.rs:219:59)", -"0x10421da28: grimoire_css_lib::core::css_builder::css_builder_base::CssBuilder::combine_spells_to_optimized_css_string (core/css_builder/css_builder_base.rs:95:38)", -"0x1042141f4: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::build (core/css_builder/css_builder_fs.rs:119:22)", -"0x1042141f4: grimoire_css_lib::commands::build::build (src/commands/build.rs:37:61)", -"0x1042141f4: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", -"0x104275298: ::allocate (core/css_builder/css_builder_base.rs:250:14)", -"0x104275298: alloc::raw_vec::RawVecInner::try_allocate_in (src/num/uint_macros.rs:476:47)", -"0x104275298: alloc::raw_vec::RawVecInner::with_capacity_in (src/num/uint_macros.rs:422:15)", -"0x104275298: alloc::raw_vec::RawVec::with_capacity_in (src/num/uint_macros.rs:190:20)", -"0x104275298: alloc::vec::Vec::with_capacity_in (src/fmt/rt.rs:929:20)", -"0x104275298: ::to_vec_in::ConvertVec>::to_vec (core/src/cell.rs:445:29)", -"0x104275298: alloc::slice::::to_vec_in (core/src/cell.rs:398:16)", -"0x104275298: alloc::slice::::to_vec (core/src/cell.rs:374:14)", -"0x104275298: alloc::slice::::to_owned (core/src/cell.rs:838:14)", -"0x104275298: alloc::str::::to_owned (src/util/captures.rs:211:62)", -"0x104275298: >::from (src/ptr/non_null.rs:3068:11)", -"0x104275298: ::spec_to_string (src/ptr/non_null.rs:2848:9)", -"0x104275298: ::to_string (src/ptr/non_null.rs:2809:9)", -"0x104275298: indicatif::style::segment::{{closure}} (src/util/search.rs:42:25)", -"0x104275298: core::ops::function::impls:: for &mut F>::call_once (src/raw/mod.rs:313:21)", -"0x104275298: core::option::Option::map (src/ptr/mod.rs:1158:29)", -"0x104275298: as core::iter::traits::iterator::Iterator>::next (src/hir/mod.rs:107:26)", -"0x104274ce8: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:25:41)", -"0x104274ce8: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/meta/regex.rs:34:9)", -"0x104274ce8: as core::iter::traits::collect::FromIterator>::from_iter (src/fmt/rt.rs:3633:9)", -"0x104274ce8: core::iter::traits::iterator::Iterator::collect (src/util/pool.rs:2027:9)", -"0x104274ce8: indicatif::style::ProgressStyle::new (src/util/search.rs:121:18)", -"0x104257038: indicatif::style::ProgressStyle::default_bar (indicatif-0.18.3/src/style.rs:73:9)", -"0x104257038: indicatif::state::BarState::new (indicatif-0.18.3/src/state.rs:32:20)", -"0x104257038: indicatif::progress_bar::ProgressBar::with_draw_target (indicatif-0.18.3/src/progress_bar.rs:74:40)", -"0x104257038: indicatif::progress_bar::ProgressBar::new_spinner (indicatif-0.18.3/src/progress_bar.rs:151:18)", -"0x104257038: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:156:14)", -"0x104145b50: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104145b50: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104145b50: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104145b50: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104145b50: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104145b50: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x104145b50: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:31:34)", -"0x104145b50: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x104145b50: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x104145b50: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x104145b50: glob::Pattern::new (glob-0.3.3/src/lib.rs:609:37)", -"0x104145654: glob::glob_with (glob-0.3.3/src/lib.rs:254:27)", -"0x104145654: glob::glob (glob-0.3.3/src/lib.rs:165:5)", -"0x10415d838: grimoire_css_lib::core::config::config_fs::ConfigFs::load_external_variables (core/config/config_fs.rs:727:15)", -"0x10415d838: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:184:28)", -"0x104215fb4: grimoire_css_lib::commands::init::init (src/commands/init.rs:23:11)", -"0x104211b48: grimoire_css_lib::commands::build::build (src/commands/build.rs:35:18)", -"0x104211b48: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", -"0x104531304: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x104531304: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x104531304: regex_automata::nfa::thompson::builder::Builder::patch (nfa/thompson/builder.rs:0:0)", -"0x104530730: regex_automata::nfa::thompson::compiler::Compiler::patch (nfa/thompson/compiler.rs:1637:35)", -"0x104530730: regex_automata::nfa::thompson::compiler::Compiler::c_at_least (nfa/thompson/compiler.rs:1268:22)", -"0x1045f1b78: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1045f1b78: alloc::sync::Arc<[T]>::allocate_for_slice::{{closure}} (alloc/src/sync.rs:2071:33)", -"0x1045f1b78: alloc::sync::Arc::allocate_for_layout (alloc/src/sync.rs:1984:19)", -"0x1045f1b78: alloc::sync::Arc<[T]>::allocate_for_slice (alloc/src/sync.rs:2069:13)", -"0x1045f1b78: alloc::sync::Arc<[T]>::copy_from_slice (alloc/src/sync.rs:2083:23)", -"0x1045f1b78: as alloc::sync::ArcFromSlice>::from_slice (alloc/src/sync.rs:2174:18)", -"0x1045f1b78: as core::convert::From<&[T]>>::from (alloc/src/sync.rs:3722:9)", -"0x1045f1b78: as core::convert::From<&str>>::from (alloc/src/sync.rs:3760:19)", -"0x1045f1b78: regex::builders::Builder::build_one_string (regex-1.12.2/src/builders.rs:78:23)", -"0x1045f1b78: regex::builders::string::RegexBuilder::build (regex-1.12.2/src/builders.rs:233:26)", -"0x1045f1b78: regex::regex::string::Regex::new (src/regex/string.rs:181:31)", -"0x104551554: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104551554: alloc::boxed::Box::try_new_uninit_in (alloc/src/boxed.rs:508:19)", -"0x104551554: alloc::boxed::Box::new_uninit_in (alloc/src/boxed.rs:474:15)", -"0x104551554: alloc::boxed::Box::new_uninit (alloc/src/boxed.rs:281:9)", -"0x104551554: as core::default::Default>::default (alloc/src/sync.rs:3561:21)", -"0x104551554: ::default (src/util/captures.rs:1450:24)", -"0x104551554: ::default (nfa/thompson/nfa.rs:1214:5)", -"0x104551554: regex_automata::nfa::thompson::builder::Builder::build (nfa/thompson/builder.rs:423:23)", -"0x104551554: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:1012:14)", -"0x1045ecc08: grimoire_css_lib::core::parser::parser_base::Parser::new (core/parser/parser_base.rs:34:38)", -"0x10455108c: ::allocate (alloc/src/alloc.rs:250:14)", -"0x10455108c: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x10455108c: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x10455108c: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x10455108c: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x10455108c: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x10455108c: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:54:33)", -"0x10455108c: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x10455108c: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x10455108c: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x10455108c: regex_syntax::hir::interval::IntervalSet::new (src/hir/interval.rs:74:52)", -"0x10455108c: regex_syntax::hir::ClassBytes::new (src/hir/mod.rs:1364:27)", -"0x10455108c: regex_syntax::hir::Hir::dot (src/hir/mod.rs:664:53)", -"0x10455108c: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:997:30)", -"0x10457b408: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x10457b408: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x10457b408: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x10458efbc: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x10458efbc: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x10458efbc: regex_syntax::hir::literal::PreferenceTrie::create_state (src/hir/literal.rs:2306:21)", -"0x10458efbc: regex_syntax::hir::literal::PreferenceTrie::root (src/hir/literal.rs:2299:18)", -"0x10458efbc: regex_syntax::hir::literal::PreferenceTrie::insert (src/hir/literal.rs:2269:29)", -"0x10458efbc: regex_syntax::hir::literal::PreferenceTrie::minimize::{{closure}} (src/hir/literal.rs:2244:46)", -"0x10458ed88: alloc::vec::Vec::retain_mut::process_loop (src/vec/mod.rs:2290:21)", -"0x10458ed88: alloc::vec::Vec::retain_mut (src/vec/mod.rs:2316:9)", -"0x10458ed88: regex_syntax::hir::literal::PreferenceTrie::minimize (src/hir/literal.rs:2244:18)", -"0x10458e364: regex_syntax::hir::literal::Seq::optimize_by_preference (src/hir/literal.rs:1854:17)", -"0x104548614: regex_syntax::hir::literal::Seq::optimize_for_prefix_by_preference (src/hir/literal.rs:1820:14)", -"0x104548614: regex_automata::util::prefilter::prefixes (util/prefilter/mod.rs:672:22)", -"0x104548614: regex_automata::meta::strategy::new (src/meta/strategy.rs:112:24)", -"0x10452e050: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x10452e050: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x10452e050: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x1045333b0: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x1045333b0: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x1045333b0: regex_automata::nfa::thompson::builder::Builder::add_capture_start (nfa/thompson/builder.rs:1007:31)", -"0x1045333b0: regex_automata::nfa::thompson::compiler::Compiler::add_capture_start (nfa/thompson/compiler.rs:1691:35)", -"0x1045333b0: regex_automata::nfa::thompson::compiler::Compiler::c_cap (nfa/thompson/compiler.rs:1156:26)", -"0x104146154: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104146154: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104146154: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104146154: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104146154: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104146154: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x104146154: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x104146154: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x104146154: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", -"0x104146154: alloc::str::::to_owned (alloc/src/str.rs:211:62)", -"0x104146154: >::from (alloc/src/string.rs:3056:11)", -"0x104146154: ::spec_to_string (alloc/src/string.rs:2977:21)", -"0x104146154: ::to_string (alloc/src/string.rs:2809:9)", -"0x104146154: glob::Pattern::new (glob-0.3.3/src/lib.rs:726:31)", -"0x104144f20: glob::glob_with (glob-0.3.3/src/lib.rs:213:13)", -"0x104144f20: glob::glob (glob-0.3.3/src/lib.rs:165:5)", -"0x10452eac4: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x10452eac4: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x10452eac4: regex_automata::nfa::thompson::range_trie::RangeTrie::add_empty (nfa/thompson/range_trie.rs:445:25)", -"0x10452e934: regex_automata::nfa::thompson::range_trie::RangeTrie::clear (nfa/thompson/range_trie.rs:239:14)", -"0x10452e934: regex_automata::nfa::thompson::range_trie::RangeTrie::new (nfa/thompson/range_trie.rs:231:14)", -"0x10452e934: regex_automata::nfa::thompson::compiler::Compiler::new (nfa/thompson/compiler.rs:746:38)", -"0x10454a008: regex_automata::hybrid::dfa::Builder::new (src/hybrid/dfa.rs:4003:23)", -"0x10454a008: regex_automata::meta::wrappers::HybridEngine::new (src/meta/wrappers.rs:588:26)", -"0x10454a008: regex_automata::meta::wrappers::Hybrid::new (src/meta/wrappers.rs:522:16)", -"0x10454a008: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:532:21)", -"0x10454a008: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", -"0x1045f4940: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1045f4940: alloc::sync::Arc<[T]>::allocate_for_slice::{{closure}} (alloc/src/sync.rs:2071:33)", -"0x1045f4940: alloc::sync::Arc::allocate_for_layout (alloc/src/sync.rs:1984:19)", -"0x1045f4940: alloc::sync::Arc<[T]>::allocate_for_slice (alloc/src/sync.rs:2069:13)", -"0x1045f4940: alloc::sync::Arc<[T]>::copy_from_slice (alloc/src/sync.rs:2083:23)", -"0x1045f4940: as alloc::sync::ArcFromSlice>::from_slice (alloc/src/sync.rs:2174:18)", -"0x1045f4940: as core::convert::From<&[T]>>::from (alloc/src/sync.rs:3722:9)", -"0x1045f4940: regex_automata::util::determinize::state::StateBuilderNFA::to_state (util/determinize/state.rs:288:15)", -"0x1045f4940: regex_automata::hybrid::dfa::Lazy::add_builder_state (src/hybrid/dfa.rs:2270:45)", -"0x1045f4940: regex_automata::hybrid::dfa::Lazy::cache_next_state (src/hybrid/dfa.rs:2151:25)", -"0x104542be8: regex_automata::hybrid::dfa::DFA::next_state (src/hybrid/dfa.rs:1228:32)", -"0x104542be8: regex_automata::hybrid::search::find_fwd_imp (src/hybrid/search.rs:89:18)", -"0x104542be8: regex_automata::hybrid::search::find_fwd (src/hybrid/search.rs:38:13)", -"0x10455a7d0: regex_automata::hybrid::dfa::DFA::try_search_fwd (src/hybrid/dfa.rs:595:24)", -"0x10455a7d0: regex_automata::hybrid::regex::Regex::try_search (src/hybrid/regex.rs:448:40)", -"0x104557630: regex_automata::meta::wrappers::HybridEngine::try_search (src/meta/wrappers.rs:634:20)", -"0x104557630: regex_automata::meta::strategy::Core::try_search_mayfail (src/meta/strategy.rs:560:20)", -"0x104557630: ::search_slots (src/meta/strategy.rs:829:28)", -"0x10414d688: regex_automata::meta::regex::Regex::search_slots_with (src/meta/regex.rs:1455:24)", -"0x10414d688: regex_automata::meta::regex::Regex::search_captures_with (src/meta/regex.rs:1392:24)", -"0x10414d688: ::next::{{closure}} (src/meta/regex.rs:2171:16)", -"0x104221084: regex_automata::util::iter::Searcher::try_advance (src/util/iter.rs:429:27)", -"0x104221084: regex_automata::util::iter::Searcher::advance (src/util/iter.rs:379:20)", -"0x104221084: ::next (src/meta/regex.rs:2170:20)", -"0x104221084: ::next (src/regex/string.rs:2248:17)", -"0x10421f42c: grimoire_css_lib::core::parser::parser_base::Parser::collect_classes (core/parser/parser_base.rs:124:20)", -"0x10421dfd4: grimoire_css_lib::core::parser::parser_base::Parser::collect_candidates (core/parser/parser_base.rs:230:9)", -"0x10421bc94: grimoire_css_lib::core::parser::parser_fs::ParserFs::collect_spells_from_path (core/parser/parser_fs.rs:233:46)", -"0x10458d5ec: ::allocate (alloc/src/alloc.rs:250:14)", -"0x10458d5ec: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x10458d5ec: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x10458d5ec: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x10458d5ec: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x10458d5ec: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x10458d5ec: regex_syntax::hir::literal::Seq::cross_forward (src/hir/literal.rs:971:49)", -"0x10458d5ec: regex_syntax::hir::literal::Extractor::cross (src/hir/literal.rs:567:18)", -"0x104145498: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104145498: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104145498: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104145498: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104145498: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104145498: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x104145498: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x104145498: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x104145498: std::sys::os_str::bytes::Slice::to_owned (sys/os_str/bytes.rs:314:33)", -"0x104145498: std::ffi::os_str::OsStr::to_os_string (src/ffi/os_str.rs:984:38)", -"0x104145498: std::path::Path::to_path_buf (std/src/path.rs:2351:34)", -"0x104145498: glob::glob_with::to_scope (glob-0.3.3/src/lib.rs:209:11)", -"0x104145498: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", -"0x104145498: core::option::Option::map_or_else (core/src/option.rs:1270:24)", -"0x104145498: glob::glob_with (glob-0.3.3/src/lib.rs:246:22)", -"0x104145498: glob::glob (glob-0.3.3/src/lib.rs:165:5)", -"0x10457b1dc: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x10457b1dc: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x10457b1dc: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x104582d00: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x104582d00: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x104582d00: regex_syntax::ast::parse::ParserI

::push_class_open (src/ast/parse.rs:849:14)", -"0x10457e804: regex_syntax::ast::parse::ParserI

::parse_set_class (src/ast/parse.rs:1899:34)", -"0x1045451f8: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:996:38)", -"0x1045451f8: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", -"0x1045451f8: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", -"0x1045451f8: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", -"0x1045451f8: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x1045494b0: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1045494b0: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x1045494b0: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x1045494b0: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x1045494b0: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1045494b0: ::from_elem (src/vec/spec_from_elem.rs:15:21)", -"0x1045494b0: alloc::vec::from_elem (src/vec/mod.rs:3415:5)", -"0x1045494b0: regex_automata::dfa::onepass::InternalBuilder::new (src/dfa/onepass.rs:566:28)", -"0x1045494b0: regex_automata::dfa::onepass::Builder::build_from_nfa (src/dfa/onepass.rs:413:9)", -"0x1045494b0: regex_automata::meta::wrappers::OnePassEngine::new (src/meta/wrappers.rs:392:18)", -"0x1045494b0: regex_automata::meta::wrappers::OnePass::new (src/meta/wrappers.rs:331:17)", -"0x1045494b0: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:486:23)", -"0x1045494b0: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", -"0x10453db98: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", -"0x10453db98: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", -"0x10453db98: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", -"0x10453db98: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3770:18)", -"0x10453db98: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", -"0x10453db98: as core::iter::traits::collect::Extend>::extend (src/vec/mod.rs:3702:9)", -"0x10453db98: regex_automata::hybrid::dfa::Lazy::init_cache (src/hybrid/dfa.rs:2528:14)", -"0x10453ce00: regex_automata::hybrid::dfa::Cache::new (src/hybrid/dfa.rs:1891:41)", -"0x104568f08: regex_automata::hybrid::regex::Cache::new (src/hybrid/regex.rs:613:23)", -"0x104568f08: regex_automata::hybrid::regex::Regex::create_cache (src/hybrid/regex.rs:192:9)", -"0x104568f08: regex_automata::meta::wrappers::HybridCache::new::{{closure}} (src/meta/wrappers.rs:773:56)", -"0x104568f08: core::option::Option::map (core/src/option.rs:1158:29)", -"0x104568f08: regex_automata::meta::wrappers::HybridCache::new (src/meta/wrappers.rs:773:44)", -"0x104568f08: regex_automata::meta::wrappers::Hybrid::create_cache (src/meta/wrappers.rs:526:9)", -"0x104568f08: ::create_cache (src/meta/strategy.rs:679:33)", -"0x104568f08: ::create_cache (src/meta/strategy.rs:1304:19)", -"0x1045ecf58: as core::ops::function::Fn>::call (alloc/src/boxed.rs:1985:9)", -"0x1045ecf58: regex_automata::util::pool::inner::Pool::get_slow (src/util/pool.rs:568:54)", -"0x10422864c: regex_automata::util::pool::inner::Pool::get (src/util/pool.rs:533:18)", -"0x10422864c: regex_automata::util::pool::Pool::get (src/util/pool.rs:182:26)", -"0x10422864c: regex_automata::meta::regex::Regex::captures_iter (src/meta/regex.rs:655:31)", -"0x10422864c: regex::regex::string::Regex::captures_iter (src/regex/string.rs:424:50)", -"0x10422864c: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::handle_generic_css (core/css_generator/css_generator_base.rs:514:14)", -"0x1042252a8: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::generate_base_and_additional_css (core/css_generator/css_generator_base.rs:399:26)", -"0x1042252a8: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::generate_css (core/css_generator/css_generator_base.rs:180:22)", -"0x1045f3d80: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", -"0x1045f3d80: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", -"0x1045f3d80: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", -"0x1045f3d80: alloc::vec::Vec::append_elements (src/vec/mod.rs:2732:14)", -"0x1045f3d80: as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter>>::spec_extend (src/vec/spec_extend.rs:61:23)", -"0x1045f3d80: alloc::vec::Vec::extend_from_slice (src/vec/mod.rs:3262:14)", -"0x1045f3d80: regex_automata::util::determinize::state::StateBuilderEmpty::into_matches (util/determinize/state.rs:200:16)", -"0x1045f3d80: regex_automata::util::determinize::state::State::dead (util/determinize/state.rs:131:34)", -"0x1045f3ccc: regex_automata::hybrid::dfa::minimum_cache_capacity (src/hybrid/dfa.rs:4374:27)", -"0x10453c8a0: regex_automata::hybrid::dfa::Builder::build_from_nfa (src/hybrid/dfa.rs:4088:25)", -"0x10454a3f4: regex_automata::meta::wrappers::HybridEngine::new (src/meta/wrappers.rs:606:18)", -"0x10454a3f4: regex_automata::meta::wrappers::Hybrid::new (src/meta/wrappers.rs:522:16)", -"0x10454a3f4: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:532:21)", -"0x10454a3f4: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", -"0x1045e7cec: alloc::raw_vec::finish_grow (src/raw_vec/mod.rs:0:0)", -"0x1045f7788: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x1045f7788: alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle (alloc/src/alloc.rs:557:35)", -"0x1041453a0: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", -"0x1041453a0: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", -"0x1041453a0: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", -"0x1041453a0: alloc::vec::Vec::append_elements (src/vec/mod.rs:2732:14)", -"0x1041453a0: as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter>>::spec_extend (src/vec/spec_extend.rs:61:23)", -"0x1041453a0: alloc::vec::Vec::extend_from_slice (src/vec/mod.rs:3262:14)", -"0x1041453a0: std::sys::os_str::bytes::Buf::push_slice (sys/os_str/bytes.rs:139:20)", -"0x1041453a0: ::spec_push_to (src/ffi/os_str.rs:268:27)", -"0x1041453a0: std::ffi::os_str::OsString::push (src/ffi/os_str.rs:284:11)", -"0x1041453a0: std::path::PathBuf::_push (std/src/path.rs:1382:20)", -"0x1041453a0: std::path::PathBuf::push (std/src/path.rs:1301:14)", -"0x1041453a0: >::extend::{{closure}} (std/src/path.rs:1931:49)", -"0x1041453a0: core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (iter/traits/iterator.rs:824:29)", -"0x1041453a0: core::iter::traits::iterator::Iterator::fold (iter/traits/iterator.rs:2602:21)", -"0x1041453a0: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", -"0x1041453a0: >::extend (std/src/path.rs:1931:26)", -"0x1041453a0: >::from_iter (std/src/path.rs:1909:13)", -"0x1041453a0: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x1041453a0: glob::glob_with (glob-0.3.3/src/lib.rs:225:56)", -"0x1041453a0: glob::glob (glob-0.3.3/src/lib.rs:165:5)", -"0x104165c40: grimoire_css_lib::core::config::config_fs::ConfigFs::expand_glob_patterns (core/config/config_fs.rs:564:19)", -"0x10415a2a8: grimoire_css_lib::core::config::config_fs::ConfigFs::projects_from_json::{{closure}} (core/config/config_fs.rs:376:35)", -"0x10415a2a8: core::iter::adapters::map::map_try_fold::{{closure}} (iter/adapters/map.rs:95:28)", -"0x10415a2a8: as core::iter::traits::iterator::Iterator>::try_fold (src/vec/into_iter.rs:351:25)", -"0x10415a2a8: as core::iter::traits::iterator::Iterator>::try_fold (iter/adapters/map.rs:121:19)", -"0x10415a2a8: >::collect_in_place (src/vec/in_place_collect.rs:380:18)", -"0x10415a2a8: alloc::vec::in_place_collect::from_iter_in_place (src/vec/in_place_collect.rs:271:9)", -"0x10415a2a8: alloc::vec::in_place_collect::from_iter_in_place{{reify.shim}} (src/vec/in_place_collect.rs:251:1)", -"0x10415a2a8: alloc::vec::in_place_collect:: for alloc::vec::Vec>::from_iter (src/vec/in_place_collect.rs:246:9)", -"0x10415a2a8: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x10415a2a8: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x10415a2a8: grimoire_css_lib::core::config::config_fs::ConfigFs::projects_from_json (core/config/config_fs.rs:384:14)", -"0x10415a2a8: grimoire_css_lib::core::config::config_fs::ConfigFs::from_json (core/config/config_fs.rs:254:24)", -"0x10415a2a8: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:175:26)", -"0x104549998: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x104549998: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x104549998: regex_automata::dfa::onepass::InternalBuilder::add_start_state (src/dfa/onepass.rs:824:25)", -"0x104549998: regex_automata::dfa::onepass::InternalBuilder::build (src/dfa/onepass.rs:610:14)", -"0x104549998: regex_automata::dfa::onepass::Builder::build_from_nfa (src/dfa/onepass.rs:413:57)", -"0x104549998: regex_automata::meta::wrappers::OnePassEngine::new (src/meta/wrappers.rs:392:18)", -"0x104549998: regex_automata::meta::wrappers::OnePass::new (src/meta/wrappers.rs:331:17)", -"0x104549998: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:486:23)", -"0x104549998: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", -"0x1045ec9c8: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::new (core/css_generator/css_generator_base.rs:68:26)", -"0x1045ec9c8: grimoire_css_lib::core::css_builder::css_builder_base::CssBuilder::new (core/css_builder/css_builder_base.rs:46:29)", -"0x1045525b8: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1045525b8: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x1045525b8: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x1045525b8: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x1045525b8: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1045525b8: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x1045525b8: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x1045525b8: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x1045525b8: regex_automata::nfa::thompson::builder::Builder::build (nfa/thompson/builder.rs:464:45)", -"0x1045525b8: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:1012:14)", -"0x10452d9ec: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x10452d9ec: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x10452d9ec: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x104539030: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x104539030: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x104539030: regex_automata::nfa::thompson::compiler::Utf8Node::set_last_transition (nfa/thompson/compiler.rs:1892:24)", -"0x104539030: regex_automata::nfa::thompson::compiler::Utf8Compiler::pop_freeze (nfa/thompson/compiler.rs:1868:20)", -"0x104539030: regex_automata::nfa::thompson::compiler::Utf8Compiler::compile_from (nfa/thompson/compiler.rs:1821:29)", -"0x1045389a0: regex_automata::nfa::thompson::compiler::Utf8Compiler::finish (nfa/thompson/compiler.rs:1796:14)", -"0x104536208: regex_automata::nfa::thompson::compiler::Compiler::c_unicode_class (nfa/thompson/compiler.rs:1468:19)", -"0x104536208: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1026:50)", -"0x104538024: regex_automata::nfa::thompson::compiler::Compiler::c_alt_slice::{{closure}} (nfa/thompson/compiler.rs:1079:62)", -"0x104538024: core::ops::function::impls:: for &mut F>::call_once (src/ops/function.rs:313:21)", -"0x104538024: core::option::Option::map (core/src/option.rs:1158:29)", -"0x104538024: as core::iter::traits::iterator::Iterator>::next (iter/adapters/map.rs:107:26)", -"0x104538024: regex_automata::nfa::thompson::compiler::Compiler::c_alt_iter (nfa/thompson/compiler.rs:1110:30)", -"0x104534184: regex_automata::nfa::thompson::compiler::Compiler::c_alt_slice (nfa/thompson/compiler.rs:1079:25)", -"0x104534184: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1031:41)", -"0x104530700: regex_automata::nfa::thompson::compiler::Compiler::c_at_least (nfa/thompson/compiler.rs:1267:37)", -"0x10457dce8: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x10457dce8: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x10457dce8: regex_syntax::ast::Ast::group (src/ast/mod.rs:546:20)", -"0x10457dce8: regex_syntax::ast::parse::ParserI

::pop_group (src/ast/parse.rs:785:32)", -"0x1045451d0: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:993:38)", -"0x1045451d0: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", -"0x1045451d0: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", -"0x1045451d0: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", -"0x1045451d0: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x1045392ec: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1045392ec: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x1045392ec: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x1045392ec: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x1045392ec: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1045392ec: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x1045392ec: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x1045392ec: as core::clone::Clone>::clone (src/vec/mod.rs:3515:9)", -"0x1045392ec: regex_automata::nfa::thompson::compiler::Utf8Compiler::compile (nfa/thompson/compiler.rs:1836:47)", -"0x1045389f4: regex_automata::nfa::thompson::compiler::Utf8Compiler::finish (nfa/thompson/compiler.rs:1798:26)", -"0x1045348b4: regex_automata::nfa::thompson::compiler::Compiler::c::{{closure}} (nfa/thompson/compiler.rs:1030:68)", -"0x1045348b4: core::ops::function::impls:: for &mut F>::call_once (src/ops/function.rs:313:21)", -"0x1045348b4: core::option::Option::map (core/src/option.rs:1158:29)", -"0x1045348b4: as core::iter::traits::iterator::Iterator>::next (iter/adapters/map.rs:107:26)", -"0x1045348b4: regex_automata::nfa::thompson::compiler::Compiler::c_concat (nfa/thompson/compiler.rs:1052:67)", -"0x1045348b4: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1030:36)", -"0x104552e38: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x104552e38: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x104552e38: regex_automata::nfa::thompson::nfa::Inner::into_nfa (nfa/thompson/nfa.rs:1280:19)", -"0x104552e38: regex_automata::nfa::thompson::builder::Builder::build (nfa/thompson/builder.rs:592:29)", -"0x104552e38: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:1012:14)", -"0x1045f3dd4: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1045f3dd4: alloc::sync::Arc<[T]>::allocate_for_slice::{{closure}} (alloc/src/sync.rs:2071:33)", -"0x1045f3dd4: alloc::sync::Arc::allocate_for_layout (alloc/src/sync.rs:1984:19)", -"0x1045f3dd4: alloc::sync::Arc<[T]>::allocate_for_slice (alloc/src/sync.rs:2069:13)", -"0x1045f3dd4: alloc::sync::Arc<[T]>::copy_from_slice (alloc/src/sync.rs:2083:23)", -"0x1045f3dd4: as alloc::sync::ArcFromSlice>::from_slice (alloc/src/sync.rs:2174:18)", -"0x1045f3dd4: as core::convert::From<&[T]>>::from (alloc/src/sync.rs:3722:9)", -"0x1045f3dd4: regex_automata::util::determinize::state::StateBuilderNFA::to_state (util/determinize/state.rs:288:15)", -"0x1045f3dd4: regex_automata::util::determinize::state::State::dead (util/determinize/state.rs:131:60)", -"0x10453d0b8: regex_automata::hybrid::dfa::Lazy::init_cache (src/hybrid/dfa.rs:2531:20)", -"0x104556bdc: regex_automata::hybrid::regex::Cache::new (src/hybrid/regex.rs:614:23)", -"0x104556bdc: regex_automata::hybrid::regex::Regex::create_cache (src/hybrid/regex.rs:192:9)", -"0x104556bdc: regex_automata::meta::wrappers::HybridCache::new::{{closure}} (src/meta/wrappers.rs:773:56)", -"0x104556bdc: core::option::Option::map (core/src/option.rs:1158:29)", -"0x104556bdc: regex_automata::meta::wrappers::HybridCache::new (src/meta/wrappers.rs:773:44)", -"0x104556bdc: regex_automata::meta::wrappers::Hybrid::create_cache (src/meta/wrappers.rs:526:9)", -"0x104556bdc: ::create_cache (src/meta/strategy.rs:679:33)", -"0x104220af0: regex_automata::util::pool::inner::Pool::get (src/util/pool.rs:533:18)", -"0x104220af0: regex_automata::util::pool::Pool::get (src/util/pool.rs:182:26)", -"0x104220af0: regex_automata::meta::regex::Regex::captures_iter (src/meta/regex.rs:655:31)", -"0x104220af0: regex::regex::string::Regex::captures_iter (src/regex/string.rs:424:50)", -"0x104220af0: grimoire_css_lib::core::parser::parser_base::Parser::collect_classes (core/parser/parser_base.rs:124:26)", -"0x104213e44: grimoire_css_lib::core::parser::parser_fs::ParserFs::collect_classes_single_output (core/parser/parser_fs.rs:63:18)", -"0x104213e44: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::build (core/css_builder/css_builder_fs.rs:93:22)", -"0x104213e44: grimoire_css_lib::commands::build::build (src/commands/build.rs:37:61)", -"0x104213e44: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", -"0x104532aa0: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x104532aa0: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x104532aa0: regex_automata::util::captures::GroupInfoInner::add_first_group (src/util/captures.rs:2207:28)", -"0x104551918: regex_automata::util::captures::GroupInfo::new (src/util/captures.rs:1595:24)", -"0x104551918: regex_automata::nfa::thompson::nfa::Inner::set_captures (nfa/thompson/nfa.rs:1434:27)", -"0x104551918: regex_automata::nfa::thompson::builder::Builder::build (nfa/thompson/builder.rs:439:13)", -"0x104551918: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:1012:14)", -"0x1045ed548: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x1045ed548: alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle (src/num/uint_macros.rs:557:35)", -"0x104273474: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", -"0x104273474: alloc::raw_vec::RawVec::reserve (src/num/uint_macros.rs:331:20)", -"0x104273474: alloc::vec::Vec::reserve (src/fmt/rt.rs:1339:18)", -"0x104273474: alloc::string::String::reserve (src/ptr/non_null.rs:1214:18)", -"0x104273474: alloc::string::String::push (src/ptr/non_null.rs:1413:14)", -"0x104273474: indicatif::style::Template::from_str_with_tab_width (src/util/search.rs:628:21)", -"0x104273474: indicatif::style::Template::from_str (src/util/search.rs:643:9)", -"0x1042571f8: indicatif::style::ProgressStyle::default_spinner (indicatif-0.18.3/src/style.rs:78:19)", -"0x1042571f8: indicatif::progress_bar::ProgressBar::new_spinner (indicatif-0.18.3/src/progress_bar.rs:152:22)", -"0x1042571f8: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:156:14)", -"0x10458d1a0: ::allocate (alloc/src/alloc.rs:250:14)", -"0x10458d1a0: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x10458d1a0: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x10458d1a0: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x10458d1a0: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x10458d1a0: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x10458d1a0: regex_syntax::hir::literal::Seq::cross_reverse (src/hir/literal.rs:1108:44)", -"0x10458d1a0: regex_syntax::hir::literal::Extractor::cross (src/hir/literal.rs:565:18)", -"0x10458babc: regex_syntax::hir::literal::Extractor::extract_concat (src/hir/literal.rs:407:24)", -"0x10458babc: regex_syntax::hir::literal::Extractor::extract (src/hir/literal.rs:190:45)", -"0x10454b9d0: regex_automata::util::prefilter::suffixes (util/prefilter/mod.rs:695:39)", -"0x10454b9d0: regex_automata::meta::strategy::ReverseSuffix::new (src/meta/strategy.rs:1170:24)", -"0x10454b9d0: regex_automata::meta::strategy::new (src/meta/strategy.rs:170:18)", -"0x1045555e8: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x1045555e8: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x1045555e8: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", -"0x1045555e8: regex_automata::util::prefilter::Prefilter::from_choice (util/prefilter/mod.rs:230:38)", -"0x10454a6e8: regex_automata::util::prefilter::Prefilter::new::{{closure}} (util/prefilter/mod.rs:210:13)", -"0x10454a6e8: core::option::Option::and_then (core/src/option.rs:1537:24)", -"0x10454a6e8: regex_automata::util::prefilter::Prefilter::new (util/prefilter/mod.rs:207:36)", -"0x10454a6e8: regex_automata::meta::strategy::new::{{closure}} (src/meta/strategy.rs:147:13)", -"0x10454a6e8: regex_automata::meta::strategy::new (src/meta/strategy.rs:141:29)", -"0x10454f840: ::allocate (alloc/src/alloc.rs:250:14)", -"0x10454f840: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x10454f840: alloc::raw_vec::RawVecInner::with_capacity (src/raw_vec/mod.rs:150:15)", -"0x10454f840: alloc::raw_vec::RawVec::with_capacity (src/raw_vec/mod.rs:128:23)", -"0x10454f840: as alloc::boxed::convert::BoxFromSlice>::from_slice (src/boxed/convert.rs:82:19)", -"0x10454f840: alloc::boxed::convert:: for alloc::boxed::Box<[T]>>::from (src/boxed/convert.rs:108:9)", -"0x10454f840: memchr::cow::CowBytes::into_owned (memchr-2.7.6/src/cow.rs:66:37)", -"0x10454f840: memchr::memmem::Finder::into_owned (src/memmem/mod.rs:475:33)", -"0x10454f840: regex_automata::util::prefilter::memmem::Memmem::new (util/prefilter/memmem.rs:29:62)", -"0x10454f840: regex_automata::util::prefilter::Choice::new (util/prefilter/mod.rs:611:28)", -"0x104549510: regex_automata::util::prefilter::Prefilter::new (util/prefilter/mod.rs:207:9)", -"0x104549510: regex_automata::meta::strategy::new::{{closure}} (src/meta/strategy.rs:147:13)", -"0x104549510: core::option::Option::and_then (core/src/option.rs:1537:24)", -"0x104549510: regex_automata::meta::strategy::new (src/meta/strategy.rs:141:29)", -"0x1045894dc: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x1045894dc: ::drop (src/ast/mod.rs:1721:25)", -"0x10457b8fc: core::ptr::drop_in_place (src/ptr/mod.rs:804:1)", -"0x10457fd00: core::ptr::drop_in_place (src/ptr/mod.rs:804:1)", -"0x10457fd00: core::ptr::drop_in_place> (src/ptr/mod.rs:804:1)", -"0x10457fd00: core::ptr::drop_in_place (src/ptr/mod.rs:804:1)", -"0x104580b78: ::drop (src/ast/mod.rs:1683:9)", -"0x10452d938: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x10452d938: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x10452d938: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x1045334b8: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x1045334b8: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x1045334b8: regex_automata::nfa::thompson::builder::Builder::add_capture_start (nfa/thompson/builder.rs:1023:32)", -"0x1045334b8: regex_automata::nfa::thompson::compiler::Compiler::add_capture_start (nfa/thompson/compiler.rs:1691:35)", -"0x1045334b8: regex_automata::nfa::thompson::compiler::Compiler::c_cap (nfa/thompson/compiler.rs:1156:26)", -"0x10453dbb8: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", -"0x10453dbb8: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", -"0x10453dbb8: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", -"0x10453dbb8: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3770:18)", -"0x10453dbb8: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", -"0x10453dbb8: as core::iter::traits::collect::Extend>::extend (src/vec/mod.rs:3702:9)", -"0x10453dbb8: regex_automata::hybrid::dfa::Lazy::add_state (src/hybrid/dfa.rs:2303:26)", -"0x10453dbb8: regex_automata::hybrid::dfa::Lazy::init_cache (src/hybrid/dfa.rs:2546:18)", -"0x104556bd0: regex_automata::hybrid::regex::Cache::new (src/hybrid/regex.rs:613:23)", -"0x104556bd0: regex_automata::hybrid::regex::Regex::create_cache (src/hybrid/regex.rs:192:9)", -"0x104556bd0: regex_automata::meta::wrappers::HybridCache::new::{{closure}} (src/meta/wrappers.rs:773:56)", -"0x104556bd0: core::option::Option::map (core/src/option.rs:1158:29)", -"0x104556bd0: regex_automata::meta::wrappers::HybridCache::new (src/meta/wrappers.rs:773:44)", -"0x104556bd0: regex_automata::meta::wrappers::Hybrid::create_cache (src/meta/wrappers.rs:526:9)", -"0x104556bd0: ::create_cache (src/meta/strategy.rs:679:33)", -"0x10421dfa4: grimoire_css_lib::core::parser::parser_base::Parser::collect_candidates (core/parser/parser_base.rs:220:9)", -"0x104584b28: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x104584b28: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x104584b28: regex_syntax::ast::Ast::concat (src/ast/mod.rs:556:21)", -"0x104584b28: regex_syntax::ast::Concat::into_ast (src/ast/mod.rs:665:18)", -"0x10457e3f4: regex_syntax::ast::parse::ParserI

::push_or_add_alternation (src/ast/parse.rs:680:35)", -"0x10457e3f4: regex_syntax::ast::parse::ParserI

::push_alternate (src/ast/parse.rs:668:14)", -"0x104545400: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:994:38)", -"0x104545400: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", -"0x104545400: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", -"0x104545400: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", -"0x104545400: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x10457b63c: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x10457b63c: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x10457b63c: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x10457d558: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x10457d558: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x10457d558: regex_syntax::ast::parse::ParserI

::push_group (src/ast/parse.rs:721:56)", -"0x10454543c: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:992:38)", -"0x10454543c: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", -"0x10454543c: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", -"0x10454543c: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", -"0x10454543c: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x1045927b8: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1045927b8: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x1045927b8: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x1045927b8: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x1045927b8: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1045927b8: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x1045927b8: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x1045927b8: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x1045927b8: regex_syntax::hir::translate::TranslatorI::push_char (src/hir/translate.rs:707:48)", -"0x1045927b8: ::visit_post (src/hir/translate.rs:388:34)", -"0x10415cb40: grimoire_css_lib::core::config::config_fs::ConfigFs::load_external_scrolls (core/config/config_fs.rs:614:15)", -"0x10415cb40: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:181:26)", -"0x10452f288: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", -"0x10452f288: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", -"0x10452f288: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", -"0x10452f288: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3770:18)", -"0x10452f288: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", -"0x10452f288: as core::iter::traits::collect::Extend>::extend (src/vec/mod.rs:3702:9)", -"0x10452f288: regex_automata::dfa::onepass::InternalBuilder::add_empty_state (src/dfa/onepass.rs:882:14)", -"0x104549904: regex_automata::dfa::onepass::InternalBuilder::build (src/dfa/onepass.rs:604:31)", -"0x104549904: regex_automata::dfa::onepass::Builder::build_from_nfa (src/dfa/onepass.rs:413:57)", -"0x104549904: regex_automata::meta::wrappers::OnePassEngine::new (src/meta/wrappers.rs:392:18)", -"0x104549904: regex_automata::meta::wrappers::OnePass::new (src/meta/wrappers.rs:331:17)", -"0x104549904: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:486:23)", -"0x104549904: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", -"0x10458bd08: regex_syntax::hir::literal::Extractor::extract_alternation (src/hir/literal.rs:428:45)", -"0x10458bd08: regex_syntax::hir::literal::Extractor::extract (src/hir/literal.rs:196:22)", -"0x10458be6c: regex_syntax::hir::literal::Extractor::extract_concat (src/hir/literal.rs:407:45)", -"0x10458be6c: regex_syntax::hir::literal::Extractor::extract (src/hir/literal.rs:189:45)", -"0x10453cd38: regex_automata::util::sparse_set::SparseSet::new (src/util/sparse_set.rs:119:13)", -"0x10453cd38: regex_automata::util::sparse_set::SparseSets::new (src/util/sparse_set.rs:48:19)", -"0x10453cd38: regex_automata::hybrid::dfa::Cache::new (src/hybrid/dfa.rs:1881:22)", -"0x10421e064: grimoire_css_lib::core::parser::parser_base::Parser::collect_candidates (core/parser/parser_base.rs:260:9)", -"0x104599d28: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104599d28: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104599d28: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104599d28: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104599d28: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104599d28: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x104599d28: regex_syntax::hir::Hir::alternation (src/hir/mod.rs:576:23)", -"0x104591a5c: ::visit_post (src/hir/translate.rs:462:42)", -"0x104546eb8: regex_syntax::ast::visitor::HeapVisitor::visit (src/ast/visitor.rs:251:25)", -"0x104546eb8: regex_syntax::ast::visitor::visit (src/ast/visitor.rs:119:24)", -"0x104546eb8: regex_syntax::hir::translate::Translator::translate (src/hir/translate.rs:174:9)", -"0x104546eb8: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3494:18)", -"0x104546eb8: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x104551774: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", -"0x104551774: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", -"0x104551774: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", -"0x104551774: alloc::vec::Vec::extend_with (src/vec/mod.rs:3355:14)", -"0x104551774: alloc::vec::Vec::resize (src/vec/mod.rs:3234:18)", -"0x104551774: regex_automata::nfa::thompson::builder::Builder::build (nfa/thompson/builder.rs:436:15)", -"0x104551774: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:1012:14)", -"0x104530830: regex_automata::nfa::thompson::compiler::Compiler::patch (nfa/thompson/compiler.rs:1637:35)", -"0x104530830: regex_automata::nfa::thompson::compiler::Compiler::c_at_least (nfa/thompson/compiler.rs:1308:18)", -"0x104534278: regex_automata::nfa::thompson::compiler::Compiler::c_zero_or_one (nfa/thompson/compiler.rs:1338:29)", -"0x104534278: regex_automata::nfa::thompson::compiler::Compiler::c_repetition (nfa/thompson/compiler.rs:1171:34)", -"0x104534278: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1028:41)", -"0x104599c50: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x104599c50: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x104599c50: regex_syntax::hir::Properties::repetition (src/hir/mod.rs:2553:20)", -"0x1045921c4: regex_syntax::hir::Hir::repetition (src/hir/mod.rs:395:21)", -"0x1045921c4: regex_syntax::hir::translate::TranslatorI::hir_repetition (src/hir/translate.rs:1016:9)", -"0x1045921c4: ::visit_post (src/hir/translate.rs:437:47)", -"0x10452efe8: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", -"0x10452efe8: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", -"0x10452efe8: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", -"0x10452efe8: alloc::vec::Vec::extend_with (src/vec/mod.rs:3355:14)", -"0x10452efe8: alloc::vec::Vec::resize (src/vec/mod.rs:3234:18)", -"0x10452efe8: regex_automata::util::sparse_set::SparseSet::resize (src/util/sparse_set.rs:136:20)", -"0x1045e73e0: alloc::raw_vec::finish_grow (src/raw_vec/mod.rs:0:0)", -"0x104144d40: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x104144d40: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x104144d40: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x104145f30: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x104145f30: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x104145f30: glob::Pattern::new (glob-0.3.3/src/lib.rs:718:28)", -"0x104257358: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104257358: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104257358: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104257358: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104257358: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104257358: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x104257358: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x104257358: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x104257358: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", -"0x104257358: alloc::str::::to_owned (alloc/src/str.rs:211:62)", -"0x104257358: >::from (alloc/src/string.rs:3056:11)", -"0x104257358: <&str as alloc::string::SpecToString>::spec_to_string (alloc/src/string.rs:2977:21)", -"0x104257358: ::to_string (alloc/src/string.rs:2809:9)", -"0x104257358: indicatif::style::ProgressStyle::tick_strings::{{closure}} (indicatif-0.18.3/src/style.rs:150:48)", -"0x104257358: core::iter::adapters::map::map_fold::{{closure}} (iter/adapters/map.rs:88:28)", -"0x104257358: as core::iter::traits::iterator::Iterator>::fold (slice/iter/macros.rs:255:27)", -"0x104257358: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/map.rs:128:19)", -"0x104257358: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", -"0x104257358: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3774:26)", -"0x104257358: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", -"0x104257358: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:62:16)", -"0x104257358: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x104257358: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x104257358: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x104257358: indicatif::style::ProgressStyle::tick_strings (indicatif-0.18.3/src/style.rs:150:68)", -"0x104257358: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:157:51)", -"0x104536b20: regex_automata::nfa::thompson::compiler::Compiler::patch (nfa/thompson/compiler.rs:1637:35)", -"0x104536b20: regex_automata::nfa::thompson::compiler::Compiler::c_unicode_class_reverse_with_suffix (nfa/thompson/compiler.rs:1564:22)", -"0x104536b20: regex_automata::nfa::thompson::compiler::Compiler::c_unicode_class (nfa/thompson/compiler.rs:1422:22)", -"0x104536b20: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1026:50)", -"0x104534870: regex_automata::nfa::thompson::compiler::Compiler::c::{{closure}} (nfa/thompson/compiler.rs:1030:68)", -"0x104534870: core::ops::function::impls:: for &mut F>::call_once (src/ops/function.rs:313:21)", -"0x104534870: core::option::Option::map (core/src/option.rs:1158:29)", -"0x104534870: as core::iter::traits::double_ended::DoubleEndedIterator>::next_back (iter/adapters/map.rs:149:31)", -"0x104534870: regex_automata::nfa::thompson::compiler::Compiler::c_concat (nfa/thompson/compiler.rs:1052:43)", -"0x104534870: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1030:36)", -"0x10453812c: regex_automata::nfa::thompson::compiler::Compiler::c_alt_slice::{{closure}} (nfa/thompson/compiler.rs:1079:62)", -"0x10453812c: core::ops::function::impls:: for &mut F>::call_once (src/ops/function.rs:313:21)", -"0x10453812c: core::option::Option::map (core/src/option.rs:1158:29)", -"0x10453812c: as core::iter::traits::iterator::Iterator>::next (iter/adapters/map.rs:107:26)", -"0x10453812c: regex_automata::nfa::thompson::compiler::Compiler::c_alt_iter (nfa/thompson/compiler.rs:1114:31)", -"0x104533aac: regex_automata::nfa::thompson::compiler::Compiler::c::{{closure}} (nfa/thompson/compiler.rs:1030:68)", -"0x104533aac: core::ops::function::impls:: for &mut F>::call_once (src/ops/function.rs:313:21)", -"0x104533aac: core::option::Option::map (core/src/option.rs:1158:29)", -"0x104533aac: as core::iter::traits::double_ended::DoubleEndedIterator>::next_back (iter/adapters/map.rs:149:31)", -"0x104533aac: regex_automata::nfa::thompson::compiler::Compiler::c_concat (nfa/thompson/compiler.rs:1045:47)", -"0x104533aac: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1030:36)", -"0x10452e1b8: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x10452e1b8: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x10452e1b8: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x1045329d0: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x1045329d0: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x1045329d0: regex_automata::util::captures::GroupInfoInner::add_first_group (src/util/captures.rs:2205:26)", -"0x10452e3e0: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x10452e3e0: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x10452e3e0: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x104532a38: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x104532a38: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x104532a38: regex_automata::util::captures::GroupInfoInner::add_first_group (src/util/captures.rs:2206:28)", -"0x1045920a0: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x1045920a0: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x1045920a0: regex_syntax::hir::translate::TranslatorI::hir_repetition (src/hir/translate.rs:1020:18)", -"0x1045920a0: ::visit_post (src/hir/translate.rs:437:47)", -"0x104533a60: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104533a60: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104533a60: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104533a60: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104533a60: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104533a60: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x104533a60: regex_automata::nfa::thompson::compiler::Compiler::c_byte_class (nfa/thompson/compiler.rs:1371:25)", -"0x104533a60: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1025:48)", -"0x104552768: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104552768: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104552768: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104552768: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104552768: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104552768: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x104552768: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x104552768: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x104552768: regex_automata::nfa::thompson::builder::Builder::build (nfa/thompson/builder.rs:523:40)", -"0x104552768: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:1012:14)", -"0x104553264: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x104553264: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x104553264: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", -"0x104553264: regex_automata::nfa::thompson::nfa::Inner::into_nfa (nfa/thompson/nfa.rs:1343:13)", -"0x104553264: regex_automata::nfa::thompson::builder::Builder::build (nfa/thompson/builder.rs:592:29)", -"0x104553264: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:1012:14)", -"0x1045e50d4: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x1045e50d4: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x1045e50d4: ahash::random_state::get_src::{{closure}} (ahash-0.8.12/src/random_state.rs:192:53)", -"0x1045e50d4: once_cell::race::once_box::OnceBox::get_or_init::{{closure}} (once_cell-1.21.3/src/race.rs:437:62)", -"0x1045e50d4: once_cell::race::once_box::OnceBox::init (once_cell-1.21.3/src/race.rs:463:23)", -"0x104114924: once_cell::race::once_box::OnceBox::get_or_try_init (once_cell-1.21.3/src/race.rs:456:30)", -"0x104114924: once_cell::race::once_box::OnceBox::get_or_init (once_cell-1.21.3/src/race.rs:437:24)", -"0x104114924: ahash::random_state::get_src (ahash-0.8.12/src/random_state.rs:192:29)", -"0x104114924: ahash::random_state::RandomState::new (ahash-0.8.12/src/random_state.rs:235:19)", -"0x104114924: as core::iter::traits::collect::FromIterator<(K,V)>>::from_iter (ahash-0.8.12/src/hash_map.rs:354:46)", -"0x104114924: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x104114924: browserslist_data::caniuse::BROWSER_VERSION_ALIASES::{{closure}} (browserslist-data-0.1.4/src/caniuse.rs:62:10)", -"0x104114924: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", -"0x104113fcc: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", -"0x104113fcc: std::sync::lazy_lock::LazyLock::force::{{closure}} (src/sync/lazy_lock.rs:213:25)", -"0x104113fcc: std::sync::poison::once::Once::call_once::{{closure}} (sync/poison/once.rs:155:41)", -"0x1045fab8c: std::sys::sync::once::queue::Once::call (sync/once/queue.rs:220:21)", -"0x104113dec: std::sync::poison::once::Once::call_once (sync/poison/once.rs:155:20)", -"0x104113dec: std::sync::lazy_lock::LazyLock::force (src/sync/lazy_lock.rs:209:19)", -"0x104113dec: as core::ops::deref::Deref>::deref (src/sync/lazy_lock.rs:312:9)", -"0x104113dec: browserslist_data::caniuse::get_browser_version_alias (browserslist-data-0.1.4/src/caniuse.rs:169:5)", -"0x104106fa4: browserslist::queries::browser_unbounded_range::browser_unbounded_range (src/queries/browser_unbounded_range.rs:13:28)", -"0x1040f99e4: browserslist::resolve::{{closure}} (browserslist-rs-0.19.0/src/lib.rs:116:28)", -"0x1040f99e4: as core::iter::traits::iterator::Iterator>::try_fold::enumerate::{{closure}} (iter/adapters/enumerate.rs:119:27)", -"0x1040f99e4: as core::iter::traits::iterator::Iterator>::try_fold (src/vec/into_iter.rs:351:25)", -"0x1040f99e4: as core::iter::traits::iterator::Iterator>::try_fold (iter/adapters/enumerate.rs:125:19)", -"0x1040f99e4: browserslist::resolve (browserslist-rs-0.19.0/src/lib.rs:111:10)", -"0x1040f99e4: browserslist::queries::dead::dead (src/queries/dead.rs:5:5)", -"0x1040f99e4: browserslist::queries::query (src/queries/mod.rs:219:28)", -"0x1040f9360: browserslist::resolve::{{closure}} (browserslist-rs-0.19.0/src/lib.rs:116:28)", -"0x1040f9360: as core::iter::traits::iterator::Iterator>::try_fold::enumerate::{{closure}} (iter/adapters/enumerate.rs:119:27)", -"0x1040f9360: as core::iter::traits::iterator::Iterator>::try_fold (src/vec/into_iter.rs:351:25)", -"0x1040f9360: as core::iter::traits::iterator::Iterator>::try_fold (iter/adapters/enumerate.rs:125:19)", -"0x1040f9360: browserslist::resolve (browserslist-rs-0.19.0/src/lib.rs:111:10)", -"0x1040f9360: browserslist::queries::defaults::defaults (src/queries/defaults.rs:5:5)", -"0x1040f9360: browserslist::queries::query (src/queries/mod.rs:218:32)", -"0x104258684: browserslist::resolve::{{closure}} (browserslist-rs-0.19.0/src/lib.rs:116:28)", -"0x104258684: as core::iter::traits::iterator::Iterator>::try_fold::enumerate::{{closure}} (iter/adapters/enumerate.rs:119:27)", -"0x104258684: as core::iter::traits::iterator::Iterator>::try_fold (src/vec/into_iter.rs:351:25)", -"0x104258684: as core::iter::traits::iterator::Iterator>::try_fold (iter/adapters/enumerate.rs:125:19)", -"0x104258684: browserslist::resolve (browserslist-rs-0.19.0/src/lib.rs:111:10)", -"0x104258684: lightningcss::targets::Browsers::from_browserslist_with_config (lightningcss-1.0.0-alpha.68/src/targets.rs:64:25)", -"0x104258684: lightningcss::targets::Browsers::from_browserslist (lightningcss-1.0.0-alpha.68/src/targets.rs:54:5)", -"0x104258684: grimoire_css_lib::infrastructure::lightning_css_optimizer::LightningCssOptimizer::from_content (src/infrastructure/lightning_css_optimizer.rs:27:24)", -"0x104258684: grimoire_css_lib::infrastructure::lightning_css_optimizer::LightningCssOptimizer::new (src/infrastructure/lightning_css_optimizer.rs:59:9)", -"0x104258684: grimoire_css_lib::start (grimoire-css/src/lib.rs:73:25)", -"0x104258684: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:164:11)", -"0x104594324: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x104594324: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x104594324: regex_syntax::hir::Properties::literal (src/hir/mod.rs:2448:20)", -"0x104594324: regex_syntax::hir::Hir::literal (src/hir/mod.rs:349:21)", -"0x10459bbac: regex_syntax::hir::Hir::concat (src/hir/mod.rs:493:22)", -"0x104591854: ::visit_post (src/hir/translate.rs:453:42)", -"0x10453ccf8: regex_automata::util::sparse_set::SparseSet::new (src/util/sparse_set.rs:119:13)", -"0x10453ccf8: regex_automata::util::sparse_set::SparseSets::new (src/util/sparse_set.rs:47:19)", -"0x10453ccf8: regex_automata::hybrid::dfa::Cache::new (src/hybrid/dfa.rs:1881:22)", -"0x10421e034: grimoire_css_lib::core::parser::parser_base::Parser::collect_candidates (core/parser/parser_base.rs:250:9)", -"0x10421e004: grimoire_css_lib::core::parser::parser_base::Parser::collect_candidates (core/parser/parser_base.rs:240:9)", -"0x10457aee8: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x10457aee8: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x10457aee8: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x104593170: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x104593170: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x104593170: regex_syntax::hir::translate::TranslatorI::push (src/hir/translate.rs:692:41)", -"0x104545fe4: ::visit_pre (src/hir/translate.rs:345:40)", -"0x104545fe4: regex_syntax::ast::visitor::HeapVisitor::visit (src/ast/visitor.rs:215:21)", -"0x104545fe4: regex_syntax::ast::visitor::visit (src/ast/visitor.rs:119:24)", -"0x104545fe4: regex_syntax::hir::translate::Translator::translate (src/hir/translate.rs:174:9)", -"0x104545fe4: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3494:18)", -"0x104545fe4: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x1045491d8: regex_automata::dfa::onepass::Builder::new (src/dfa/onepass.rs:347:23)", -"0x1045491d8: regex_automata::meta::wrappers::OnePassEngine::new (src/meta/wrappers.rs:390:26)", -"0x1045491d8: regex_automata::meta::wrappers::OnePass::new (src/meta/wrappers.rs:331:17)", -"0x1045491d8: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:486:23)", -"0x1045491d8: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", -"0x10455289c: ::allocate_zeroed (alloc/src/alloc.rs:256:14)", -"0x10455289c: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:478:40)", -"0x10455289c: alloc::raw_vec::RawVecInner::with_capacity_zeroed_in (src/raw_vec/mod.rs:447:15)", -"0x10455289c: alloc::raw_vec::RawVec::with_capacity_zeroed_in (src/raw_vec/mod.rs:212:20)", -"0x10455289c: ::from_elem (src/vec/spec_from_elem.rs:26:31)", -"0x10455289c: alloc::vec::from_elem (src/vec/mod.rs:3415:5)", -"0x10455289c: regex_automata::nfa::thompson::builder::Builder::build (nfa/thompson/builder.rs:560:28)", -"0x10455289c: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:1012:14)", -"0x104545908: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x104545908: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x104545908: regex_syntax::ast::Ast::class_perl (src/ast/mod.rs:531:24)", -"0x104545908: regex_syntax::ast::parse::Primitive::into_ast (src/ast/parse.rs:59:37)", -"0x104545908: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:1020:63)", -"0x104545908: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", -"0x104545908: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", -"0x104545908: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", -"0x104545908: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x10458bf08: ::allocate (alloc/src/alloc.rs:250:14)", -"0x10458bf08: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x10458bf08: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x10458bf08: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x10458bf08: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x10458bf08: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x10458bf08: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x10458bf08: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x10458bf08: regex_syntax::hir::literal::Extractor::extract (src/hir/literal.rs:178:63)", -"0x10458c340: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x10458c340: regex_syntax::hir::literal::Seq::singleton (src/hir/literal.rs:783:30)", -"0x10458c340: regex_syntax::hir::literal::Extractor::extract (src/hir/literal.rs:178:21)", -"0x1045543f8: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", -"0x1045543f8: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", -"0x1045543f8: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", -"0x1045543f8: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3770:18)", -"0x1045543f8: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", -"0x1045543f8: as core::iter::traits::collect::Extend>::extend (src/vec/mod.rs:3702:9)", -"0x1045543f8: regex_syntax::hir::literal::Seq::union (src/hir/literal.rs:1233:15)", -"0x104548574: regex_automata::util::prefilter::prefixes (util/prefilter/mod.rs:658:18)", -"0x104548574: regex_automata::meta::strategy::new (src/meta/strategy.rs:112:24)", -"0x104532a68: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x104532a68: regex_automata::util::captures::GroupInfoInner::add_first_group (src/util/captures.rs:2207:33)", -"0x10459f93c: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x10459f93c: regex_syntax::utf8::Utf8Sequences::new (regex-syntax-0.8.8/src/utf8.rs:307:38)", -"0x104536920: regex_automata::nfa::thompson::compiler::Compiler::c_unicode_class_reverse_with_suffix (nfa/thompson/compiler.rs:1545:24)", -"0x104536920: regex_automata::nfa::thompson::compiler::Compiler::c_unicode_class (nfa/thompson/compiler.rs:1422:22)", -"0x104536920: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1026:50)", -"0x1045cc338: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x1045cc338: alloc::raw_vec::RawVecInner::grow_one (alloc/src/alloc.rs:571:32)", -"0x1045cc338: alloc::raw_vec::RawVec::grow_one (alloc/src/alloc.rs:340:20)", -"0x1045cc148: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x1045cc148: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x1045cc148: std::sys::thread_local::destructors::list::register (???:17:11)", -"0x104271a90: std::sys::thread_local::native::eager::Storage::initialize (thread_local/native/eager.rs:47:13)", -"0x104271a90: std::sys::thread_local::native::eager::Storage::get (src/num/f64.rs:36:45)", -"0x104271a90: std::thread::spawnhook::SPAWN_HOOKS::{{constant}}::{{closure}} (serde_json-1.0.147/src/number.rs:67:29)", -"0x104271a90: core::ops::function::FnOnce::call_once (slice/iter/macros.rs:253:5)", -"0x104271a90: std::thread::local::LocalKey::initialize_with (src/value/de.rs:337:19)", -"0x104271a90: std::thread::local::LocalKey>::set (src/value/de.rs:376:14)", -"0x104271a90: std::thread::spawnhook::ChildSpawnHooks::run (iter/adapters/fuse.rs:148:21)", -"0x104271a90: std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::{{closure}} (src/raw_vec/mod.rs:558:78)", -"0x104271a90: std::sys::backtrace::__rust_begin_short_backtrace (sort/shared/pivot.rs:158:18)", -"0x104275fb4: std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}} (src/thread/mod.rs:558:17)", -"0x104275fb4: as core::ops::function::FnOnce<()>>::call_once (sys/thread_local/mod.rs:272:9)", -"0x104275fb4: std::panicking::catch_unwind::do_call (alloc/src/slice.rs:589:40)", -"0x104275fb4: std::panicking::catch_unwind (alloc/src/slice.rs:552:19)", -"0x104275fb4: std::panic::catch_unwind (src/fmt/mod.rs:359:14)", -"0x104275fb4: std::thread::Builder::spawn_unchecked_::{{closure}} (src/raw_vec/mod.rs:557:30)", -"0x104275fb4: core::ops::function::FnOnce::call_once{{vtable.shim}} (src/raw/mod.rs:253:5)", -"0x1045d99fc: as core::ops::function::FnOnce>::call_once (alloc/src/boxed.rs:1971:9)", -"0x1045d99fc: std::sys::pal::unix::thread::Thread::new::thread_start (serde_json-1.0.147/src/de.rs:107:17)", -"0x1926d9c08: __pthread_cond_wait (???:0:0)", -"0x104551840: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104551840: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104551840: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104551840: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104551840: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104551840: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x104551840: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x104551840: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x104551840: regex_automata::nfa::thompson::nfa::Inner::set_starts (nfa/thompson/nfa.rs:1402:44)", -"0x104551840: regex_automata::nfa::thompson::builder::Builder::build (nfa/thompson/builder.rs:438:13)", -"0x104551840: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:1012:14)", -"0x104547110: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x104547110: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x104547110: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3496:18)", -"0x104547110: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x10457d384: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x10457d384: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x10457d384: regex_syntax::ast::Ast::flags (src/ast/mod.rs:506:20)", -"0x10457d384: regex_syntax::ast::parse::ParserI

::push_group (src/ast/parse.rs:712:34)", -"0x104549004: regex_automata::nfa::thompson::backtrack::Builder::new (nfa/thompson/backtrack.rs:268:23)", -"0x104549004: regex_automata::meta::wrappers::BoundedBacktrackerEngine::new (src/meta/wrappers.rs:207:26)", -"0x104549004: regex_automata::meta::wrappers::BoundedBacktracker::new (src/meta/wrappers.rs:150:9)", -"0x104549004: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:481:13)", -"0x104549004: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", -"0x10458baa4: regex_syntax::hir::literal::Extractor::extract_concat (src/hir/literal.rs:407:45)", -"0x10458baa4: regex_syntax::hir::literal::Extractor::extract (src/hir/literal.rs:190:45)", -"0x10459abe0: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x10459abe0: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x10459abe0: regex_syntax::hir::Properties::union (src/hir/mod.rs:2391:20)", -"0x10459abe0: regex_syntax::hir::Properties::alternation (src/hir/mod.rs:2656:9)", -"0x10459abe0: regex_syntax::hir::Hir::alternation (src/hir/mod.rs:630:21)", -"0x104535c4c: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x104535c4c: regex_syntax::utf8::Utf8Sequences::new (regex-syntax-0.8.8/src/utf8.rs:307:38)", -"0x104535c4c: regex_automata::nfa::thompson::compiler::Compiler::c_unicode_class (nfa/thompson/compiler.rs:1464:28)", -"0x104535c4c: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1026:50)", -"0x104273dc0: alloc::vec::Vec::extend_desugared (src/vec/mod.rs:3741:44)", -"0x104273dc0: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/mod.rs:19:14)", -"0x104273dc0: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (core/src/option.rs:42:9)", -"0x104273dc0: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/meta/regex.rs:34:9)", -"0x104273dc0: as core::iter::traits::collect::FromIterator>::from_iter (src/fmt/rt.rs:3633:9)", -"0x104273dc0: core::iter::traits::iterator::Iterator::collect (src/util/pool.rs:2027:9)", -"0x104273dc0: indicatif::style::segment (src/util/search.rs:42:45)", -"0x104273dc0: indicatif::style::ProgressStyle::new (src/util/search.rs:115:30)", -"0x104213900: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104213900: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104213900: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104213900: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104213900: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104213900: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x104213900: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x104213900: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x104213900: std::sys::os_str::bytes::Slice::to_owned (sys/os_str/bytes.rs:314:33)", -"0x104213900: std::ffi::os_str::OsStr::to_os_string (src/ffi/os_str.rs:984:38)", -"0x104213900: std::path::Path::to_path_buf (std/src/path.rs:2351:34)", -"0x104213900: grimoire_css_lib::core::parser::parser_fs::ParserFs::new (core/parser/parser_fs.rs:36:38)", -"0x104213900: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::new (core/css_builder/css_builder_fs.rs:57:22)", -"0x104213900: grimoire_css_lib::commands::build::build (src/commands/build.rs:37:5)", -"0x104213900: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", -"0x1045f33f8: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1045f33f8: hashbrown::raw::alloc::inner::do_alloc (src/raw/alloc.rs:19:21)", -"0x1045f33f8: hashbrown::raw::RawTableInner::new_uninitialized (src/raw/mod.rs:1476:38)", -"0x1045f33f8: hashbrown::raw::RawTableInner::fallible_with_capacity (src/raw/mod.rs:1515:21)", -"0x1045f33f8: hashbrown::raw::RawTableInner::prepare_resize (src/raw/mod.rs:2584:13)", -"0x1045f33f8: hashbrown::raw::RawTableInner::resize_inner (src/raw/mod.rs:2782:34)", -"0x1045f33f8: hashbrown::raw::RawTableInner::reserve_rehash_inner (src/raw/mod.rs:2670:18)", -"0x1045f33f8: hashbrown::raw::RawTable::reserve_rehash (src/raw/mod.rs:991:24)", -"0x10453eb5c: hashbrown::raw::RawTable::reserve (src/raw/mod.rs:940:22)", -"0x10453eb5c: hashbrown::raw::RawTable::find_or_find_insert_slot (src/raw/mod.rs:1146:14)", -"0x10453eb5c: hashbrown::map::HashMap::find_or_find_insert_slot (hashbrown-0.15.4/src/map.rs:1812:20)", -"0x10453eb5c: hashbrown::map::HashMap::insert (hashbrown-0.15.4/src/map.rs:1792:20)", -"0x10453d308: std::collections::hash::map::HashMap::insert (collections/hash/map.rs:1204:19)", -"0x10453d308: regex_automata::hybrid::dfa::Lazy::add_state (src/hybrid/dfa.rs:2321:33)", -"0x10453d308: regex_automata::hybrid::dfa::Lazy::init_cache (src/hybrid/dfa.rs:2546:18)", -"0x10454957c: regex_automata::util::sparse_set::SparseSet::new (src/util/sparse_set.rs:119:13)", -"0x10454957c: regex_automata::dfa::onepass::InternalBuilder::new (src/dfa/onepass.rs:568:19)", -"0x10454957c: regex_automata::dfa::onepass::Builder::build_from_nfa (src/dfa/onepass.rs:413:9)", -"0x10454957c: regex_automata::meta::wrappers::OnePassEngine::new (src/meta/wrappers.rs:392:18)", -"0x10454957c: regex_automata::meta::wrappers::OnePass::new (src/meta/wrappers.rs:331:17)", -"0x10454957c: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:486:23)", -"0x10454957c: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", -"0x10458bfbc: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x10458bfbc: regex_syntax::hir::literal::Seq::singleton (src/hir/literal.rs:783:30)", -"0x10458bfbc: regex_syntax::hir::literal::Extractor::extract_repetition (src/hir/literal.rs:458:33)", -"0x10458bfbc: regex_syntax::hir::literal::Extractor::extract (src/hir/literal.rs:186:41)", -"0x1045562ac: regex_automata::meta::reverse_inner::prefilter (src/meta/reverse_inner.rs:130:34)", -"0x10454c574: regex_automata::meta::reverse_inner::extract (src/meta/reverse_inner.rs:76:25)", -"0x10454c574: regex_automata::meta::strategy::ReverseInner::new (src/meta/strategy.rs:1568:47)", -"0x10454c574: regex_automata::meta::strategy::new (src/meta/strategy.rs:177:18)", -"0x1045479a0: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x1045479a0: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x1045479a0: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", -"0x1045479a0: regex_automata::meta::regex::Builder::build_many_from_hir (src/meta/regex.rs:3616:25)", -"0x1045479a0: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3498:14)", -"0x1045479a0: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x104257b98: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x104257b98: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x104257b98: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", -"0x104257b98: std::thread::Builder::spawn_unchecked_ (src/thread/mod.rs:512:49)", -"0x104257b98: std::thread::Builder::spawn_unchecked (src/thread/mod.rs:467:37)", -"0x104257b98: std::thread::Builder::spawn (src/thread/mod.rs:399:23)", -"0x104257b98: std::thread::spawn (src/thread/mod.rs:729:20)", -"0x104257b98: indicatif::progress_bar::Ticker::new (indicatif-0.18.3/src/progress_bar.rs:706:27)", -"0x104257b98: indicatif::progress_bar::ProgressBar::stop_and_replace_ticker::{{closure}} (indicatif-0.18.3/src/progress_bar.rs:216:49)", -"0x104257b98: core::option::Option::map (core/src/option.rs:1158:29)", -"0x104257b98: indicatif::progress_bar::ProgressBar::stop_and_replace_ticker (indicatif-0.18.3/src/progress_bar.rs:216:34)", -"0x104257b98: indicatif::progress_bar::ProgressBar::enable_steady_tick (indicatif-0.18.3/src/progress_bar.rs:202:14)", -"0x104257b98: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:158:8)", -"0x104545d84: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x104545d84: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x104545d84: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3486:18)", -"0x104545d84: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x104257390: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104257390: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104257390: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104257390: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104257390: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104257390: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x104257390: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x104257390: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x104257390: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", -"0x104257390: alloc::str::::to_owned (alloc/src/str.rs:211:62)", -"0x104257390: >::from (alloc/src/string.rs:3056:11)", -"0x104257390: <&str as alloc::string::SpecToString>::spec_to_string (alloc/src/string.rs:2977:21)", -"0x104257390: ::to_string (alloc/src/string.rs:2809:9)", -"0x104257390: indicatif::style::ProgressStyle::tick_strings::{{closure}} (indicatif-0.18.3/src/style.rs:150:48)", -"0x104257390: core::iter::adapters::map::map_fold::{{closure}} (iter/adapters/map.rs:88:28)", -"0x104257390: as core::iter::traits::iterator::Iterator>::fold (slice/iter/macros.rs:255:27)", -"0x104257390: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/map.rs:128:19)", -"0x104257390: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", -"0x104257390: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3774:26)", -"0x104257390: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", -"0x104257390: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:62:16)", -"0x104257390: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x104257390: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x104257390: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x104257390: indicatif::style::ProgressStyle::tick_strings (indicatif-0.18.3/src/style.rs:150:68)", -"0x104257390: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:157:51)", -"0x10458bdf4: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x10458bdf4: regex_syntax::hir::literal::Seq::singleton (src/hir/literal.rs:783:30)", -"0x10458bdf4: regex_syntax::hir::literal::Extractor::extract_concat (src/hir/literal.rs:396:23)", -"0x10458bdf4: regex_syntax::hir::literal::Extractor::extract (src/hir/literal.rs:189:45)", -"0x10458b828: regex_syntax::hir::literal::Extractor::extract_repetition (src/hir/literal.rs:449:31)", -"0x10458b828: regex_syntax::hir::literal::Extractor::extract (src/hir/literal.rs:186:41)", -"0x104592518: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x104592518: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x104592518: regex_syntax::hir::Properties::capture (src/hir/mod.rs:2559:20)", -"0x104592518: regex_syntax::hir::Hir::capture (src/hir/mod.rs:408:21)", -"0x104592518: regex_syntax::hir::translate::TranslatorI::hir_capture (src/hir/translate.rs:995:9)", -"0x104592518: ::visit_post (src/hir/translate.rs:443:47)", -"0x10452e26c: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x10452e26c: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x10452e26c: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x104532cb8: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x104532cb8: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x104532cb8: regex_automata::nfa::thompson::nfa::Inner::add (nfa/thompson/nfa.rs:1384:21)", -"0x104552460: regex_automata::nfa::thompson::builder::Builder::build (nfa/thompson/builder.rs:534:42)", -"0x104552460: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:1012:14)", -"0x1045452bc: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x1045452bc: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x1045452bc: regex_syntax::ast::Ast::class_bracketed (src/ast/mod.rs:536:29)", -"0x1045452bc: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:997:38)", -"0x1045452bc: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", -"0x1045452bc: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", -"0x1045452bc: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", -"0x1045452bc: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x104257284: indicatif::style::ProgressStyle::default_spinner (indicatif-0.18.3/src/style.rs:78:9)", -"0x104257284: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:157:18)", -"0x10454789c: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x10454789c: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x10454789c: regex_automata::meta::regex::Builder::build_many_from_hir (src/meta/regex.rs:3613:39)", -"0x10454789c: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3498:14)", -"0x10454789c: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x10457db7c: regex_syntax::ast::parse::ParserI

::pop_group (src/ast/parse.rs:782:51)", -"0x1045ed6cc: alloc::raw_vec::finish_grow (src/raw_vec/mod.rs:0:0)", -"0x104277214: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x104277214: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x104277214: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x10444e1e0: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x10444e1e0: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x10444e1e0: lightningcss::properties::size::SizeHandler::flush (src/properties/size.rs:517:16)", -"0x104429f8c: ::finalize (src/properties/size.rs:481:10)", -"0x104429f8c: lightningcss::declaration::DeclarationHandler::finalize (lightningcss-1.0.0-alpha.68/src/declaration.rs:708:15)", -"0x10441f8a4: lightningcss::declaration::DeclarationBlock::minify (lightningcss-1.0.0-alpha.68/src/declaration.rs:260:13)", -"0x1041e467c: lightningcss::rules::style::StyleRule::minify (src/rules/style.rs:90:8)", -"0x1041783f4: lightningcss::rules::CssRuleList::minify (src/rules/mod.rs:668:40)", -"0x1041745a0: lightningcss::stylesheet::StyleSheet::minify (lightningcss-1.0.0-alpha.68/src/stylesheet.rs:260:16)", -"0x1041745a0: ::optimize (src/infrastructure/lightning_css_optimizer.rs:88:14)", -"0x10421da60: grimoire_css_lib::core::css_builder::css_builder_base::CssBuilder::combine_spells_to_optimized_css_string (core/css_builder/css_builder_base.rs:97:30)", -"0x1045521c8: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x1045521c8: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x1045521c8: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", -"0x1045521c8: regex_automata::util::captures::GroupInfo::new (src/util/captures.rs:1612:22)", -"0x1045521c8: regex_automata::nfa::thompson::nfa::Inner::set_captures (nfa/thompson/nfa.rs:1434:27)", -"0x1045521c8: regex_automata::nfa::thompson::builder::Builder::build (nfa/thompson/builder.rs:439:13)", -"0x1045521c8: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:1012:14)", -"0x1045478b4: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1045478b4: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x1045478b4: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x1045478b4: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x1045478b4: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1045478b4: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x1045478b4: regex_automata::util::pool::inner::Pool::new (src/util/pool.rs:496:30)", -"0x1045478b4: regex_automata::util::pool::Pool::new (src/util/pool.rs:160:37)", -"0x1045478b4: regex_automata::meta::regex::Builder::build_many_from_hir (src/meta/regex.rs:3614:13)", -"0x1045478b4: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3498:14)", -"0x1045478b4: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x10457ef04: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x10457ef04: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x10457ef04: regex_syntax::ast::Ast::repetition (src/ast/mod.rs:541:25)", -"0x10457ef04: regex_syntax::ast::parse::ParserI

::parse_uncounted_repetition (src/ast/parse.rs:1078:26)", -"0x1045454cc: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:1006:35)", -"0x1045454cc: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", -"0x1045454cc: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", -"0x1045454cc: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", -"0x1045454cc: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x1045311d4: regex_automata::nfa::thompson::compiler::Compiler::patch (nfa/thompson/compiler.rs:1637:35)", -"0x104538288: regex_automata::nfa::thompson::compiler::Compiler::c_alt_iter (nfa/thompson/compiler.rs:1121:14)", -"0x10453402c: ::allocate (alloc/src/alloc.rs:250:14)", -"0x10453402c: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x10453402c: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x10453402c: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x10453402c: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x10453402c: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x10453402c: regex_automata::nfa::thompson::compiler::Compiler::c_unicode_class (nfa/thompson/compiler.rs:1404:29)", -"0x10453402c: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1026:50)", -"0x10459be14: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x10459be14: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x10459be14: regex_syntax::hir::Properties::concat (src/hir/mod.rs:2651:20)", -"0x10459be14: regex_syntax::hir::Hir::concat (src/hir/mod.rs:500:21)", -"0x10454b840: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x10454b840: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x10454b840: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", -"0x10454b840: regex_automata::meta::strategy::new (src/meta/strategy.rs:185:8)", -"0x10459c2fc: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x10459c2fc: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x10459c2fc: regex_syntax::hir::Properties::empty (src/hir/mod.rs:2429:20)", -"0x10459c2fc: regex_syntax::hir::Hir::into_parts (src/hir/mod.rs:237:49)", -"0x104599dec: regex_syntax::hir::Hir::alternation (src/hir/mod.rs:578:37)", -"0x10454796c: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x10454796c: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x10454796c: regex_automata::util::pool::Pool::new (src/util/pool.rs:160:14)", -"0x10454796c: regex_automata::meta::regex::Builder::build_many_from_hir (src/meta/regex.rs:3614:13)", -"0x10454796c: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3498:14)", -"0x10454796c: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x1045f54a8: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1045f54a8: alloc::sync::Arc<[T]>::allocate_for_slice::{{closure}} (alloc/src/sync.rs:2071:33)", -"0x1045f54a8: alloc::sync::Arc::allocate_for_layout (alloc/src/sync.rs:1984:19)", -"0x1045f54a8: alloc::sync::Arc<[T]>::allocate_for_slice (alloc/src/sync.rs:2069:13)", -"0x1045f54a8: alloc::sync::Arc<[T]>::copy_from_slice (alloc/src/sync.rs:2083:23)", -"0x1045f54a8: as alloc::sync::ArcFromSlice>::from_slice (alloc/src/sync.rs:2174:18)", -"0x1045f54a8: as core::convert::From<&[T]>>::from (alloc/src/sync.rs:3722:9)", -"0x1045f54a8: regex_automata::util::determinize::state::StateBuilderNFA::to_state (util/determinize/state.rs:288:15)", -"0x1045f54a8: regex_automata::hybrid::dfa::Lazy::add_builder_state (src/hybrid/dfa.rs:2270:45)", -"0x1045f54a8: regex_automata::hybrid::dfa::Lazy::cache_start_one (src/hybrid/dfa.rs:2237:14)", -"0x1045f54a8: regex_automata::hybrid::dfa::Lazy::cache_start_group (src/hybrid/dfa.rs:2194:14)", -"0x10454315c: regex_automata::hybrid::dfa::DFA::start_state (src/hybrid/dfa.rs:1574:32)", -"0x10454315c: regex_automata::hybrid::dfa::DFA::start_state_forward (src/hybrid/dfa.rs:1599:14)", -"0x10454315c: regex_automata::hybrid::search::init_fwd (src/hybrid/search.rs:672:19)", -"0x10454315c: regex_automata::hybrid::search::find_fwd_imp (src/hybrid/search.rs:60:19)", -"0x10454315c: regex_automata::hybrid::search::find_fwd (src/hybrid/search.rs:38:13)", -"0x104580b2c: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x104580b2c: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x104580b2c: regex_syntax::ast::Ast::empty (src/ast/mod.rs:501:20)", -"0x104580b2c: ::drop::{{closure}} (src/ast/mod.rs:1656:28)", -"0x104580b2c: ::drop (src/ast/mod.rs:1657:49)", -"0x10452f490: ::allocate (alloc/src/alloc.rs:250:14)", -"0x10452f490: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x10452f490: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x10452f490: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x10452f490: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x10452f490: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x10452f490: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:54:33)", -"0x10452f490: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x10452f490: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x10452f490: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x10452f490: regex_automata::dfa::remapper::Remapper::new (src/dfa/remapper.rs:93:69)", -"0x10452f490: regex_automata::dfa::onepass::InternalBuilder::shuffle_states (src/dfa/onepass.rs:740:28)", -"0x10454ab70: regex_automata::dfa::onepass::InternalBuilder::build (src/dfa/onepass.rs:724:14)", -"0x10454ab70: regex_automata::dfa::onepass::Builder::build_from_nfa (src/dfa/onepass.rs:413:57)", -"0x10454ab70: regex_automata::meta::wrappers::OnePassEngine::new (src/meta/wrappers.rs:392:18)", -"0x10454ab70: regex_automata::meta::wrappers::OnePass::new (src/meta/wrappers.rs:331:17)", -"0x10454ab70: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:486:23)", -"0x10454ab70: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", -"0x1045eb8b8: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x1045eb8b8: alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle (src/raw_vec/mod.rs:557:35)", -"0x104222c08: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", -"0x104222c08: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", -"0x104222c08: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", -"0x104222c08: alloc::vec::Vec::append_elements (src/vec/mod.rs:2732:14)", -"0x104222c08: as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter>>::spec_extend (src/vec/spec_extend.rs:61:23)", -"0x104222c08: alloc::vec::Vec::extend_from_slice (src/vec/mod.rs:3262:14)", -"0x104222c08: alloc::string::String::push_str (alloc/src/string.rs:1113:18)", -"0x104222c08: grimoire_css_lib::core::css_builder::css_builder_base::CssBuilder::build_joined_css_and_pieces (core/css_builder/css_builder_base.rs:232:38)", -"0x10459b5f8: regex_syntax::hir::Hir::concat (src/hir/mod.rs:449:37)", -"0x10454c4e8: regex_automata::meta::reverse_inner::top_concat (src/meta/reverse_inner.rs:183:21)", -"0x10454c4e8: regex_automata::meta::reverse_inner::extract (src/meta/reverse_inner.rs:62:28)", -"0x10454c4e8: regex_automata::meta::strategy::ReverseInner::new (src/meta/strategy.rs:1568:47)", -"0x10454c4e8: regex_automata::meta::strategy::new (src/meta/strategy.rs:177:18)", -"0x104226cc4: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104226cc4: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104226cc4: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104226cc4: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104226cc4: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104226cc4: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x104226cc4: alloc::str::join_generic_copy (alloc/src/str.rs:157:22)", -"0x1042241a8: alloc::str:: for [S]>::join (alloc/src/str.rs:76:46)", -"0x1042241a8: alloc::slice::::join (alloc/src/slice.rs:596:9)", -"0x1042241a8: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::adapt_targets (core/css_generator/css_generator_base.rs:351:73)", -"0x1042241a8: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::generate_css (core/css_generator/css_generator_base.rs:176:22)", -"0x10459b910: ::allocate (alloc/src/alloc.rs:250:14)", -"0x10459b910: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x10459b910: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x10459b910: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x10459b910: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x10459b910: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x10459b910: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x10459b910: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x10459b910: regex_syntax::hir::Hir::concat (src/hir/mod.rs:455:48)", -"0x104545960: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x104545960: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x104545960: regex_syntax::ast::Ast::literal (src/ast/mod.rs:511:22)", -"0x104545960: regex_syntax::ast::parse::Primitive::into_ast (src/ast/parse.rs:56:40)", -"0x104545960: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:1020:63)", -"0x104545960: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", -"0x104545960: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", -"0x104545960: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", -"0x104545960: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x104556b54: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", -"0x104556b54: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", -"0x104556b54: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", -"0x104556b54: alloc::vec::Vec::extend_with (src/vec/mod.rs:3355:14)", -"0x104556b54: alloc::vec::Vec::resize (src/vec/mod.rs:3234:18)", -"0x104556b54: regex_automata::dfa::onepass::Cache::reset (src/dfa/onepass.rs:2563:29)", -"0x104556b54: regex_automata::dfa::onepass::Cache::new (src/dfa/onepass.rs:2517:15)", -"0x104556b54: regex_automata::dfa::onepass::DFA::create_cache (src/dfa/onepass.rs:1374:9)", -"0x104556b54: regex_automata::meta::wrappers::OnePassCache::new::{{closure}} (src/meta/wrappers.rs:481:57)", -"0x104556b54: core::option::Option::map (core/src/option.rs:1158:29)", -"0x104556b54: regex_automata::meta::wrappers::OnePassCache::new (src/meta/wrappers.rs:481:45)", -"0x104556b54: regex_automata::meta::wrappers::OnePass::create_cache (src/meta/wrappers.rs:335:9)", -"0x104556b54: ::create_cache (src/meta/strategy.rs:678:35)", -"0x104549c38: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:507:30)", -"0x104549c38: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", -"0x10415cadc: ::allocate (alloc/src/alloc.rs:250:14)", -"0x10415cadc: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x10415cadc: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x10415cadc: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x10415cadc: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x10415cadc: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x10415cadc: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x10415cadc: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x10415cadc: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", -"0x10415cadc: alloc::str::::to_owned (alloc/src/str.rs:211:62)", -"0x10415cadc: as alloc::string::SpecToString>::spec_to_string (alloc/src/string.rs:3004:18)", -"0x10415cadc: ::to_string (alloc/src/string.rs:2809:9)", -"0x10415cadc: grimoire_css_lib::core::config::config_fs::ConfigFs::load_external_scrolls (core/config/config_fs.rs:612:14)", -"0x10415cadc: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:181:26)", -"0x104548b84: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:469:19)", -"0x104548b84: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", -"0x104274d4c: ::allocate (core/css_builder/css_builder_base.rs:250:14)", -"0x104274d4c: alloc::raw_vec::RawVecInner::try_allocate_in (src/num/uint_macros.rs:476:47)", -"0x104274d4c: alloc::raw_vec::RawVecInner::with_capacity_in (src/num/uint_macros.rs:422:15)", -"0x104274d4c: alloc::raw_vec::RawVec::with_capacity_in (src/num/uint_macros.rs:190:20)", -"0x104274d4c: alloc::vec::Vec::with_capacity_in (src/fmt/rt.rs:929:20)", -"0x104274d4c: alloc::vec::Vec::with_capacity (src/fmt/rt.rs:500:9)", -"0x104274d4c: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (core/src/option.rs:31:34)", -"0x104274d4c: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/meta/regex.rs:34:9)", -"0x104274d4c: as core::iter::traits::collect::FromIterator>::from_iter (src/fmt/rt.rs:3633:9)", -"0x104274d4c: core::iter::traits::iterator::Iterator::collect (src/util/pool.rs:2027:9)", -"0x104274d4c: indicatif::style::ProgressStyle::new (src/util/search.rs:121:18)", -"0x104568f14: regex_automata::hybrid::regex::Cache::new (src/hybrid/regex.rs:614:23)", -"0x104568f14: regex_automata::hybrid::regex::Regex::create_cache (src/hybrid/regex.rs:192:9)", -"0x104568f14: regex_automata::meta::wrappers::HybridCache::new::{{closure}} (src/meta/wrappers.rs:773:56)", -"0x104568f14: core::option::Option::map (core/src/option.rs:1158:29)", -"0x104568f14: regex_automata::meta::wrappers::HybridCache::new (src/meta/wrappers.rs:773:44)", -"0x104568f14: regex_automata::meta::wrappers::Hybrid::create_cache (src/meta/wrappers.rs:526:9)", -"0x104568f14: ::create_cache (src/meta/strategy.rs:679:33)", -"0x104568f14: ::create_cache (src/meta/strategy.rs:1304:19)", -"0x1045b69c0: ::allocate (alloc/src/boxed.rs:250:14)", -"0x1045b69c0: alloc::raw_vec::RawVecInner::try_allocate_in (alloc/src/alloc.rs:476:47)", -"0x1045b69c0: alloc::raw_vec::RawVecInner::with_capacity_in (alloc/src/alloc.rs:422:15)", -"0x1045b69c0: alloc::raw_vec::RawVec::with_capacity_in (alloc/src/alloc.rs:190:20)", -"0x1045b69c0: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1045b69c0: ::to_vec_in::ConvertVec>::to_vec (src/num/uint_macros.rs:445:29)", -"0x1045b69c0: alloc::slice::::to_vec_in (src/num/uint_macros.rs:398:16)", -"0x1045b69c0: alloc::slice::::to_vec (src/num/uint_macros.rs:374:14)", -"0x1045b69c0: std::sys::os_str::bytes::Slice::to_owned (src/fmt/mod.rs:314:33)", -"0x1045b69c0: std::ffi::os_str::OsStr::to_os_string (src/io/error.rs:984:38)", -"0x1045b69c0: std::path::Path::to_path_buf (src/ptr/mut_ptr.rs:2351:34)", -"0x1045b69c0: std::path::Path::_join (src/ptr/mut_ptr.rs:2746:28)", -"0x10415f47c: std::path::Path::join (std/src/path.rs:2742:14)", -"0x10415f47c: grimoire_css_lib::core::filesystem::Filesystem::get_config_path (src/core/filesystem.rs:53:24)", -"0x104159580: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:172:27)", -"0x104556084: regex_syntax::hir::Hir::repetition (src/hir/mod.rs:395:21)", -"0x104556084: regex_automata::meta::reverse_inner::flatten (src/meta/reverse_inner.rs:209:39)", -"0x104555dbc: regex_automata::meta::reverse_inner::flatten::{{closure}} (src/meta/reverse_inner.rs:217:43)", -"0x104555dbc: core::iter::adapters::map::map_fold::{{closure}} (iter/adapters/map.rs:88:28)", -"0x104555dbc: as core::iter::traits::iterator::Iterator>::fold (slice/iter/macros.rs:255:27)", -"0x104555dbc: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/map.rs:128:19)", -"0x104555dbc: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", -"0x104555dbc: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3774:26)", -"0x104555dbc: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", -"0x104555dbc: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:62:16)", -"0x104555dbc: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x104555dbc: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x104555dbc: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x104555dbc: regex_automata::meta::reverse_inner::flatten (src/meta/reverse_inner.rs:217:55)", -"0x104555e80: regex_automata::meta::reverse_inner::flatten (src/meta/reverse_inner.rs:209:62)", -"0x10454be80: regex_automata::meta::reverse_inner::top_concat::{{closure}} (src/meta/reverse_inner.rs:183:53)", -"0x10454be80: core::iter::adapters::map::map_fold::{{closure}} (iter/adapters/map.rs:88:28)", -"0x10454be80: as core::iter::traits::iterator::Iterator>::fold (slice/iter/macros.rs:255:27)", -"0x10454be80: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/map.rs:128:19)", -"0x10454be80: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", -"0x10454be80: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3774:26)", -"0x10454be80: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", -"0x10454be80: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:62:16)", -"0x10454be80: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x10454be80: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x10454be80: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x10454be80: regex_automata::meta::reverse_inner::top_concat (src/meta/reverse_inner.rs:183:65)", -"0x10454be80: regex_automata::meta::reverse_inner::extract (src/meta/reverse_inner.rs:62:28)", -"0x10454be80: regex_automata::meta::strategy::ReverseInner::new (src/meta/strategy.rs:1568:47)", -"0x10454be80: regex_automata::meta::strategy::new (src/meta/strategy.rs:177:18)", -"0x104599444: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104599444: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104599444: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104599444: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104599444: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104599444: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x104599444: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:54:33)", -"0x104599444: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x104599444: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x104599444: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x104599444: regex_syntax::unicode::hir_class (regex-syntax-0.8.8/src/unicode.rs:456:10)", -"0x104599444: regex_syntax::unicode::perl_digit::imp (regex-syntax-0.8.8/src/unicode.rs:445:12)", -"0x104599444: regex_syntax::unicode::perl_digit (regex-syntax-0.8.8/src/unicode.rs:448:5)", -"0x104599444: regex_syntax::hir::translate::TranslatorI::hir_perl_unicode_class (src/hir/translate.rs:1089:22)", -"0x10459127c: ::visit_post (src/hir/translate.rs:400:36)", -"0x1045cca28: ::allocate (alloc/src/boxed.rs:250:14)", -"0x1045cca28: alloc::sync::Arc::new_uninit::{{closure}} (src/str/iter.rs:504:33)", -"0x1045cca28: alloc::sync::Arc::allocate_for_layout (src/str/iter.rs:1984:19)", -"0x1045cca28: alloc::sync::Arc::new_uninit (src/str/iter.rs:502:27)", -"0x1045cca28: std::thread::Thread::new (serde_json-1.0.147/src/ser.rs:1453:27)", -"0x104257810: std::thread::Builder::spawn_unchecked_ (src/thread/mod.rs:502:25)", -"0x104257810: std::thread::Builder::spawn_unchecked (src/thread/mod.rs:467:37)", -"0x104257810: std::thread::Builder::spawn (src/thread/mod.rs:399:23)", -"0x104257810: std::thread::spawn (src/thread/mod.rs:729:20)", -"0x104257810: indicatif::progress_bar::Ticker::new (indicatif-0.18.3/src/progress_bar.rs:706:27)", -"0x104257810: indicatif::progress_bar::ProgressBar::stop_and_replace_ticker::{{closure}} (indicatif-0.18.3/src/progress_bar.rs:216:49)", -"0x104257810: core::option::Option::map (core/src/option.rs:1158:29)", -"0x104257810: indicatif::progress_bar::ProgressBar::stop_and_replace_ticker (indicatif-0.18.3/src/progress_bar.rs:216:34)", -"0x104257810: indicatif::progress_bar::ProgressBar::enable_steady_tick (indicatif-0.18.3/src/progress_bar.rs:202:14)", -"0x104257810: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:158:8)", -"0x10454a11c: regex_automata::meta::wrappers::HybridEngine::new (src/meta/wrappers.rs:590:18)", -"0x10454a11c: regex_automata::meta::wrappers::Hybrid::new (src/meta/wrappers.rs:522:16)", -"0x10454a11c: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:532:21)", -"0x10454a11c: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", -"0x1045ea95c: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1045ea95c: hashbrown::raw::alloc::inner::do_alloc (src/raw/alloc.rs:19:21)", -"0x1045ea95c: hashbrown::raw::RawTableInner::new_uninitialized (src/raw/mod.rs:1476:38)", -"0x1045ea95c: hashbrown::raw::RawTableInner::fallible_with_capacity (src/raw/mod.rs:1515:21)", -"0x1045ea95c: hashbrown::raw::RawTableInner::prepare_resize (src/raw/mod.rs:2584:13)", -"0x1045ea95c: hashbrown::raw::RawTableInner::resize_inner (src/raw/mod.rs:2782:34)", -"0x1045ea95c: hashbrown::raw::RawTableInner::reserve_rehash_inner (src/raw/mod.rs:2670:18)", -"0x1045ea95c: hashbrown::raw::RawTable::reserve_rehash (src/raw/mod.rs:991:24)", -"0x104158ed8: hashbrown::raw::RawTable::reserve (src/raw/mod.rs:940:22)", -"0x104158ed8: hashbrown::raw::RawTable::find_or_find_insert_slot (src/raw/mod.rs:1146:14)", -"0x104158ed8: hashbrown::map::HashMap::find_or_find_insert_slot (hashbrown-0.15.4/src/map.rs:1812:20)", -"0x104158ed8: hashbrown::map::HashMap::insert (hashbrown-0.15.4/src/map.rs:1792:20)", -"0x104158c70: std::collections::hash::map::HashMap::insert (collections/hash/map.rs:1204:19)", -"0x104158c70: grimoire_css_lib::core::component::COMPONENTS_MAP::{{closure}} (src/core/component.rs:483:11)", -"0x104158c70: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", -"0x104158b40: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", -"0x104158b40: once_cell::sync::Lazy::force::{{closure}} (once_cell-1.21.3/src/lib.rs:1310:28)", -"0x104158b40: once_cell::sync::OnceCell::get_or_init::{{closure}} (once_cell-1.21.3/src/lib.rs:1120:57)", -"0x104158b40: once_cell::imp::OnceCell::initialize::{{closure}} (once_cell-1.21.3/src/imp_std.rs:72:23)", -"0x1045288c8: core::ops::function::impls:: for &mut F>::call_mut (src/ops/function.rs:301:21)", -"0x1045288c8: once_cell::imp::initialize_or_wait (once_cell-1.21.3/src/imp_std.rs:196:20)", -"0x1045eb6ec: once_cell::imp::OnceCell::initialize (once_cell-1.21.3/src/imp_std.rs:68:9)", -"0x104158908: once_cell::sync::OnceCell::get_or_try_init (once_cell-1.21.3/src/lib.rs:1161:20)", -"0x104158908: once_cell::sync::OnceCell::get_or_init (once_cell-1.21.3/src/lib.rs:1120:24)", -"0x104158908: once_cell::sync::Lazy::force (once_cell-1.21.3/src/lib.rs:1309:23)", -"0x104158908: as core::ops::deref::Deref>::deref (once_cell-1.21.3/src/lib.rs:1376:13)", -"0x104158908: grimoire_css_lib::core::component::get_css_property (src/core/component.rs:510:5)", -"0x1041707b8: grimoire_css_lib::core::spell::Spell::new (src/core/spell.rs:257:55)", -"0x1041732e4: grimoire_css_lib::core::spell::Spell::generate_spells_from_classes (src/core/spell.rs:421:38)", -"0x104580bd0: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x104580bd0: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x104580bd0: regex_syntax::ast::Ast::empty (src/ast/mod.rs:501:20)", -"0x104580bd0: ::drop::{{closure}} (src/ast/mod.rs:1656:28)", -"0x104580bd0: ::drop (src/ast/mod.rs:0:0)", -"0x10452e108: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x10452e108: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x10452e108: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x104547568: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x104547568: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x104547568: regex_automata::meta::regex::RegexInfo::new (src/meta/regex.rs:1940:19)", -"0x104547568: regex_automata::meta::regex::Builder::build_many_from_hir (src/meta/regex.rs:3609:20)", -"0x104547568: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3498:14)", -"0x104547568: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x10457ddb8: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x10457ddb8: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x10457ddb8: regex_syntax::ast::Ast::alternation (src/ast/mod.rs:551:26)", -"0x10457ddb8: regex_syntax::ast::Alternation::into_ast (src/ast/mod.rs:640:18)", -"0x10457ddb8: regex_syntax::ast::parse::ParserI

::pop_group (src/ast/parse.rs:779:42)", -"0x104144dfc: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x104144dfc: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x104144dfc: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x1041456b4: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x1041456b4: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x1041456b4: glob::glob_with (glob-0.3.3/src/lib.rs:254:22)", -"0x1041456b4: glob::glob (glob-0.3.3/src/lib.rs:165:5)", -"0x10459b9a0: regex_syntax::hir::Hir::concat (src/hir/mod.rs:486:34)", -"0x10452db5c: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x10452db5c: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x10452db5c: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x10453d2dc: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x10453d2dc: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x10453d2dc: regex_automata::hybrid::dfa::Lazy::add_state (src/hybrid/dfa.rs:2320:27)", -"0x10453d2dc: regex_automata::hybrid::dfa::Lazy::init_cache (src/hybrid/dfa.rs:2546:18)", -"0x104156a58: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x104156a58: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x104156a58: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x104273300: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x104273300: alloc::vec::Vec::push (src/fmt/rt.rs:2522:22)", -"0x104273300: indicatif::style::Template::from_str_with_tab_width (src/util/search.rs:596:27)", -"0x104273300: indicatif::style::Template::from_str (src/util/search.rs:643:9)", -"0x10425700c: indicatif::style::ProgressStyle::default_bar (indicatif-0.18.3/src/style.rs:73:19)", -"0x10425700c: indicatif::state::BarState::new (indicatif-0.18.3/src/state.rs:32:20)", -"0x10425700c: indicatif::progress_bar::ProgressBar::with_draw_target (indicatif-0.18.3/src/progress_bar.rs:74:40)", -"0x10425700c: indicatif::progress_bar::ProgressBar::new_spinner (indicatif-0.18.3/src/progress_bar.rs:151:18)", -"0x10425700c: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:156:14)", -"0x10459b9c0: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x10459b9c0: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x10459b9c0: regex_syntax::hir::Hir::concat (src/hir/mod.rs:486:29)", -"0x1045560cc: regex_automata::meta::reverse_inner::flatten (src/meta/reverse_inner.rs:217:13)", -"0x10457db94: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x10457db94: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x10457db94: regex_syntax::ast::parse::ParserI

::pop_group (src/ast/parse.rs:782:29)", -"0x104538330: regex_automata::nfa::thompson::compiler::Compiler::c_alt_slice::{{closure}} (nfa/thompson/compiler.rs:1079:62)", -"0x104538330: core::ops::function::impls:: for &mut F>::call_once (src/ops/function.rs:313:21)", -"0x104538330: core::option::Option::map (core/src/option.rs:1158:29)", -"0x104538330: as core::iter::traits::iterator::Iterator>::next (iter/adapters/map.rs:107:26)", -"0x104538330: regex_automata::nfa::thompson::compiler::Compiler::c_alt_iter (nfa/thompson/compiler.rs:1125:23)", -"0x104146a74: std::path::Path::join (std/src/path.rs:2742:14)", -"0x104146a74: glob::fill_todo (glob-0.3.3/src/lib.rs:926:22)", -"0x104147384: glob::fill_todo::{{closure}} (glob-0.3.3/src/lib.rs:899:13)", -"0x104147384: glob::fill_todo (glob-0.3.3/src/lib.rs:934:17)", -"0x1041676a8: ::next (glob-0.3.3/src/lib.rs:397:17)", -"0x1041676a8: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", -"0x1041676a8: core::iter::adapters::fuse::and_then_or_clear (iter/adapters/fuse.rs:469:13)", -"0x1041676a8: as core::iter::adapters::fuse::FuseImpl>::next (iter/adapters/fuse.rs:301:9)", -"0x1041676a8: as core::iter::traits::iterator::Iterator>::next (iter/adapters/fuse.rs:50:9)", -"0x1041676a8: as core::iter::traits::iterator::Iterator>::next (iter/adapters/flatten.rs:852:43)", -"0x104548cb0: regex_automata::nfa::thompson::pikevm::Builder::new (nfa/thompson/pikevm.rs:251:23)", -"0x104548cb0: regex_automata::meta::wrappers::PikeVMEngine::new (src/meta/wrappers.rs:82:22)", -"0x104548cb0: regex_automata::meta::wrappers::PikeVM::new (src/meta/wrappers.rs:57:9)", -"0x104548cb0: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:479:22)", -"0x104548cb0: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", -"0x104547734: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x104547734: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x104547734: regex_syntax::hir::Properties::union (src/hir/mod.rs:2391:20)", -"0x104547734: regex_automata::meta::regex::RegexInfo::new (src/meta/regex.rs:1942:27)", -"0x104547734: regex_automata::meta::regex::Builder::build_many_from_hir (src/meta/regex.rs:3609:20)", -"0x104547734: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3498:14)", -"0x104547734: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x104538b88: regex_automata::nfa::thompson::compiler::Utf8Compiler::add (nfa/thompson/compiler.rs:1813:14)", -"0x104535c9c: regex_automata::nfa::thompson::compiler::Compiler::c_unicode_class (nfa/thompson/compiler.rs:1465:27)", -"0x104535c9c: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1026:50)", -"0x104591728: regex_syntax::hir::translate::TranslatorI::pop_concat_expr (src/hir/translate.rs:739:44)", -"0x104591728: ::visit_post (src/hir/translate.rs:447:45)", -"0x10457c04c: regex_syntax::ast::parse::ParserI

::pop_group_end (src/ast/parse.rs:800:31)", -"0x104545b00: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:1023:24)", -"0x104545b00: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", -"0x104545b00: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", -"0x104545b00: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", -"0x104545b00: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x104552348: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x104552348: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x104552348: regex_automata::nfa::thompson::builder::Builder::build (nfa/thompson/builder.rs:451:29)", -"0x104552348: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:1012:14)", -"0x1045301f4: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x1045301f4: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x1045301f4: regex_syntax::hir::Properties::class (src/hir/mod.rs:2467:20)", -"0x1045301f4: regex_syntax::hir::Hir::class (src/hir/mod.rs:365:21)", -"0x1045510b8: regex_syntax::hir::Hir::dot (src/hir/mod.rs:664:29)", -"0x1045510b8: regex_automata::nfa::thompson::compiler::Compiler::compile (nfa/thompson/compiler.rs:997:30)", -"0x104592498: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x104592498: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x104592498: regex_syntax::hir::translate::TranslatorI::hir_capture (src/hir/translate.rs:995:55)", -"0x104592498: ::visit_post (src/hir/translate.rs:443:47)", -"0x104556154: regex_automata::meta::reverse_inner::flatten (src/meta/reverse_inner.rs:207:34)", -"0x104258bcc: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", -"0x104258bcc: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", -"0x104258bcc: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", -"0x104258bcc: alloc::vec::Vec::append_elements (src/vec/mod.rs:2732:14)", -"0x104258bcc: alloc::vec::Vec::append (src/vec/mod.rs:2721:18)", -"0x104258bcc: browserslist::resolve::{{closure}} (browserslist-rs-0.19.0/src/lib.rs:122:26)", -"0x104258bcc: as core::iter::traits::iterator::Iterator>::try_fold::enumerate::{{closure}} (iter/adapters/enumerate.rs:119:27)", -"0x104258bcc: as core::iter::traits::iterator::Iterator>::try_fold (src/vec/into_iter.rs:351:25)", -"0x104258bcc: as core::iter::traits::iterator::Iterator>::try_fold (iter/adapters/enumerate.rs:125:19)", -"0x104258bcc: browserslist::resolve (browserslist-rs-0.19.0/src/lib.rs:111:10)", -"0x104258bcc: lightningcss::targets::Browsers::from_browserslist_with_config (lightningcss-1.0.0-alpha.68/src/targets.rs:64:25)", -"0x104258bcc: lightningcss::targets::Browsers::from_browserslist (lightningcss-1.0.0-alpha.68/src/targets.rs:54:5)", -"0x104258bcc: grimoire_css_lib::infrastructure::lightning_css_optimizer::LightningCssOptimizer::from_content (src/infrastructure/lightning_css_optimizer.rs:27:24)", -"0x104258bcc: grimoire_css_lib::infrastructure::lightning_css_optimizer::LightningCssOptimizer::new (src/infrastructure/lightning_css_optimizer.rs:59:9)", -"0x104258bcc: grimoire_css_lib::start (grimoire-css/src/lib.rs:73:25)", -"0x104258bcc: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:164:11)", -"0x10457b4c8: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x10457b4c8: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x10457b4c8: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x1045830fc: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x1045830fc: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x1045830fc: regex_syntax::ast::ClassSetUnion::push (src/ast/mod.rs:1255:20)", -"0x10457e97c: regex_syntax::ast::parse::ParserI

::parse_set_class (src/ast/parse.rs:1929:27)", -"0x104257290: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104257290: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104257290: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104257290: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104257290: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104257290: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x104257290: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:54:33)", -"0x104257290: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x104257290: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x104257290: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x104257290: indicatif::style::ProgressStyle::tick_strings (indicatif-0.18.3/src/style.rs:150:68)", -"0x104257290: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:157:51)", -"0x10415d90c: as core::iter::traits::iterator::Iterator>::next (iter/adapters/flatten.rs:226:20)", -"0x10415d90c: grimoire_css_lib::core::config::config_fs::ConfigFs::load_external_variables (core/config/config_fs.rs:729:30)", -"0x10415d90c: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:184:28)", -"0x104148230: std::path::Path::join (std/src/path.rs:2742:14)", -"0x104148230: std::sys::fs::unix::DirEntry::path (sys/fs/unix.rs:885:23)", -"0x104148230: std::fs::DirEntry::path (std/src/fs.rs:2329:16)", -"0x104148230: glob::fill_todo::{{closure}}::{{closure}}::{{closure}} (glob-0.3.3/src/lib.rs:944:31)", -"0x104148230: core::result::Result::map (core/src/result.rs:801:25)", -"0x104148230: glob::fill_todo::{{closure}}::{{closure}} (glob-0.3.3/src/lib.rs:940:23)", -"0x104148230: core::iter::adapters::map::map_try_fold::{{closure}} (iter/adapters/map.rs:95:28)", -"0x104148230: core::iter::traits::iterator::Iterator::try_fold (iter/traits/iterator.rs:2426:21)", -"0x104148230: as core::iter::traits::iterator::Iterator>::try_fold (iter/adapters/map.rs:121:19)", -"0x104148230: as core::iter::traits::iterator::Iterator>::try_fold (iter/adapters/mod.rs:192:14)", -"0x104148230: core::iter::traits::iterator::Iterator::try_for_each (iter/traits/iterator.rs:2487:14)", -"0x104148230: as core::iter::traits::iterator::Iterator>::next (iter/adapters/mod.rs:174:14)", -"0x1041469a4: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:25:41)", -"0x1041469a4: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x1041469a4: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x1041469a4: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x1041469a4: as core::iter::traits::collect::FromIterator>>::from_iter::{{closure}} (core/src/result.rs:2054:51)", -"0x1041469a4: core::iter::adapters::try_process (iter/adapters/mod.rs:160:17)", -"0x1041469a4: as core::iter::traits::collect::FromIterator>>::from_iter (core/src/result.rs:2054:9)", -"0x1041469a4: glob::fill_todo::{{closure}} (glob-0.3.3/src/lib.rs:949:18)", -"0x1041469a4: core::result::Result::and_then (core/src/result.rs:1415:22)", -"0x1041469a4: glob::fill_todo (glob-0.3.3/src/lib.rs:938:43)", -"0x104227058: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104227058: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104227058: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104227058: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104227058: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104227058: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x104227058: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x104227058: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x104227058: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", -"0x104227058: alloc::str::::to_owned (alloc/src/str.rs:211:62)", -"0x104227058: >::from (alloc/src/string.rs:3068:11)", -"0x104227058: ::spec_to_string (alloc/src/string.rs:2848:9)", -"0x104227058: ::to_string (alloc/src/string.rs:2809:9)", -"0x104227058: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::escape_css_class_name::{{closure}} (core/css_generator/css_generator_base.rs:299:27)", -"0x1042264c0: core::iter::adapters::map::map_try_fold::{{closure}} (iter/adapters/map.rs:95:28)", -"0x1042264c0: core::iter::traits::iterator::Iterator::try_fold (iter/traits/iterator.rs:2426:21)", -"0x1042264c0: as core::iter::traits::iterator::Iterator>::try_fold (iter/adapters/map.rs:121:19)", -"0x1042264c0: as core::iter::traits::iterator::Iterator>::try_fold (iter/adapters/mod.rs:192:14)", -"0x1042264c0: core::iter::traits::iterator::Iterator::try_for_each (iter/traits/iterator.rs:2487:14)", -"0x1042264c0: as core::iter::traits::iterator::Iterator>::next (iter/adapters/mod.rs:174:14)", -"0x1042264c0: >::from_iter (alloc/src/string.rs:2360:24)", -"0x1042264c0: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x1042264c0: as core::iter::traits::collect::FromIterator>>::from_iter::{{closure}} (core/src/result.rs:2054:51)", -"0x1042264c0: core::iter::adapters::try_process (iter/adapters/mod.rs:160:17)", -"0x1042264c0: as core::iter::traits::collect::FromIterator>>::from_iter (core/src/result.rs:2054:9)", -"0x1042264c0: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::escape_css_class_name (core/css_generator/css_generator_base.rs:301:14)", -"0x1042264c0: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::generate_css_class_name (core/css_generator/css_generator_base.rs:238:43)", -"0x104223f0c: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::generate_css (core/css_generator/css_generator_base.rs:154:14)", -"0x104145080: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", -"0x104145080: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", -"0x104145080: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", -"0x104145080: alloc::vec::Vec::append_elements (src/vec/mod.rs:2732:14)", -"0x104145080: as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter>>::spec_extend (src/vec/spec_extend.rs:61:23)", -"0x104145080: alloc::vec::Vec::extend_from_slice (src/vec/mod.rs:3262:14)", -"0x104145080: std::sys::os_str::bytes::Buf::push_slice (sys/os_str/bytes.rs:139:20)", -"0x104145080: ::spec_push_to (src/ffi/os_str.rs:268:27)", -"0x104145080: std::ffi::os_str::OsString::push (src/ffi/os_str.rs:284:11)", -"0x104145080: std::path::PathBuf::_push (std/src/path.rs:1382:20)", -"0x104145080: std::path::PathBuf::push (std/src/path.rs:1301:14)", -"0x104145080: >::extend::{{closure}} (std/src/path.rs:1931:49)", -"0x104145080: core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (iter/traits/iterator.rs:824:29)", -"0x104145080: core::iter::adapters::map::map_fold::{{closure}} (iter/adapters/map.rs:88:21)", -"0x104145080: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/peekable.rs:113:30)", -"0x104145080: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/map.rs:128:19)", -"0x104145080: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", -"0x104145080: >::extend (std/src/path.rs:1931:26)", -"0x104145080: >::from_iter (std/src/path.rs:1909:13)", -"0x104145080: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x104145080: glob::glob_with (glob-0.3.3/src/lib.rs:224:50)", -"0x104145080: glob::glob (glob-0.3.3/src/lib.rs:165:5)", -"0x10452dd74: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x10452dd74: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x10452dd74: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x10452f94c: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x10452f94c: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x10452f94c: regex_automata::dfa::onepass::InternalBuilder::stack_push (src/dfa/onepass.rs:921:20)", -"0x10454a7b0: regex_automata::dfa::onepass::InternalBuilder::build (src/dfa/onepass.rs:638:18)", -"0x10454a7b0: regex_automata::dfa::onepass::Builder::build_from_nfa (src/dfa/onepass.rs:413:57)", -"0x10454a7b0: regex_automata::meta::wrappers::OnePassEngine::new (src/meta/wrappers.rs:392:18)", -"0x10454a7b0: regex_automata::meta::wrappers::OnePass::new (src/meta/wrappers.rs:331:17)", -"0x10454a7b0: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:486:23)", -"0x10454a7b0: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", -"0x1045923a8: regex_syntax::hir::Hir::dot (src/hir/mod.rs:0:0)", -"0x1045923a8: regex_syntax::hir::translate::TranslatorI::hir_dot (src/hir/translate.rs:916:12)", -"0x1045923a8: ::visit_post (src/hir/translate.rs:393:47)", -"0x1045851b4: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x1045851b4: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x1045851b4: regex_syntax::ast::Ast::empty (src/ast/mod.rs:501:20)", -"0x1045851b4: regex_syntax::ast::parse::ParserI

::parse_group (src/ast/parse.rs:1286:31)", -"0x10457d298: regex_syntax::ast::parse::ParserI

::push_group (src/ast/parse.rs:705:20)", -"0x10425717c: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x10425717c: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x10425717c: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", -"0x10425717c: indicatif::progress_bar::ProgressBar::with_draw_target (indicatif-0.18.3/src/progress_bar.rs:74:20)", -"0x10425717c: indicatif::progress_bar::ProgressBar::new_spinner (indicatif-0.18.3/src/progress_bar.rs:151:18)", -"0x10425717c: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:156:14)", -"0x1045917a0: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x1045917a0: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x1045917a0: ::visit_post (src/hir/translate.rs:449:31)", -"0x104545f24: ::visit_pre (src/hir/translate.rs:354:22)", -"0x104545f24: regex_syntax::ast::visitor::HeapVisitor::visit (src/ast/visitor.rs:215:21)", -"0x104545f24: regex_syntax::ast::visitor::visit (src/ast/visitor.rs:119:24)", -"0x104545f24: regex_syntax::hir::translate::Translator::translate (src/hir/translate.rs:174:9)", -"0x104545f24: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3494:18)", -"0x104545f24: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x10453906c: regex_automata::nfa::thompson::compiler::Utf8Compiler::compile_from (nfa/thompson/compiler.rs:1822:25)", -"0x1045e4dc0: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1045e4dc0: hashbrown::raw::alloc::inner::do_alloc (src/raw/alloc.rs:19:21)", -"0x1045e4dc0: hashbrown::raw::RawTableInner::new_uninitialized (src/raw/mod.rs:1476:38)", -"0x1045e4dc0: hashbrown::raw::RawTableInner::fallible_with_capacity (src/raw/mod.rs:1515:21)", -"0x1045e4dc0: hashbrown::raw::RawTableInner::prepare_resize (src/raw/mod.rs:2584:13)", -"0x1045e4dc0: hashbrown::raw::RawTableInner::resize_inner (src/raw/mod.rs:2782:34)", -"0x1045e4dc0: hashbrown::raw::RawTableInner::reserve_rehash_inner (src/raw/mod.rs:2670:18)", -"0x1045e4dc0: hashbrown::raw::RawTable::reserve_rehash (src/raw/mod.rs:991:24)", -"0x104114d38: hashbrown::raw::RawTable::reserve (src/raw/mod.rs:940:22)", -"0x104114d38: hashbrown::raw::RawTable::find_or_find_insert_slot (src/raw/mod.rs:1146:14)", -"0x104114d38: hashbrown::map::HashMap::find_or_find_insert_slot (hashbrown-0.15.4/src/map.rs:1812:20)", -"0x104114d38: hashbrown::map::HashMap::insert (hashbrown-0.15.4/src/map.rs:1792:20)", -"0x104114648: std::collections::hash::map::HashMap::insert (collections/hash/map.rs:1204:19)", -"0x104114648: ahash::hash_map::AHashMap::insert (ahash-0.8.12/src/hash_map.rs:186:16)", -"0x104114648: browserslist_data::caniuse::BROWSER_VERSION_ALIASES::{{closure}}::{{closure}}::{{closure}} (browserslist-data-0.1.4/src/caniuse.rs:52:41)", -"0x104114648: core::iter::adapters::filter_map::filter_map_fold::{{closure}} (iter/adapters/filter_map.rs:40:20)", -"0x104114648: as core::iter::traits::iterator::Iterator>::fold (slice/iter/macros.rs:255:27)", -"0x104114648: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/filter_map.rs:146:19)", -"0x104114648: browserslist_data::caniuse::BROWSER_VERSION_ALIASES::{{closure}}::{{closure}} (browserslist-data-0.1.4/src/caniuse.rs:48:18)", -"0x104114648: core::iter::adapters::filter_map::filter_map_fold::{{closure}} (iter/adapters/filter_map.rs:39:28)", -"0x104114648: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", -"0x104114648: as core::iter::traits::collect::Extend<(K,V)>>::extend (hashbrown-0.15.4/src/map.rs:4496:14)", -"0x104114648: as core::iter::traits::collect::Extend<(K,V)>>::extend (collections/hash/map.rs:2796:19)", -"0x104114648: as core::iter::traits::collect::FromIterator<(K,V)>>::from_iter (ahash-0.8.12/src/hash_map.rs:355:15)", -"0x104114648: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x104114648: browserslist_data::caniuse::BROWSER_VERSION_ALIASES::{{closure}} (browserslist-data-0.1.4/src/caniuse.rs:62:10)", -"0x104114648: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", -"0x10458f464: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x10458f464: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x10458f464: regex_syntax::hir::interval::IntervalSet::push (src/hir/interval.rs:86:21)", -"0x10458f464: regex_syntax::hir::ClassUnicode::push (src/hir/mod.rs:1078:18)", -"0x10458f464: ::visit_class_set_item_post (src/hir/translate.rs:503:25)", -"0x104546400: regex_syntax::ast::visitor::HeapVisitor::visit_class_post (src/ast/visitor.rs:377:25)", -"0x104546400: regex_syntax::ast::visitor::HeapVisitor::visit_class (src/ast/visitor.rs:326:18)", -"0x104546400: regex_syntax::ast::visitor::HeapVisitor::induct (src/ast/visitor.rs:268:22)", -"0x104546400: regex_syntax::ast::visitor::HeapVisitor::visit (src/ast/visitor.rs:216:35)", -"0x104546400: regex_syntax::ast::visitor::visit (src/ast/visitor.rs:119:24)", -"0x104546400: regex_syntax::hir::translate::Translator::translate (src/hir/translate.rs:174:9)", -"0x104546400: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3494:18)", -"0x104546400: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x10425853c: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", -"0x10425853c: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", -"0x10425853c: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", -"0x10425853c: alloc::vec::Vec::append_elements (src/vec/mod.rs:2732:14)", -"0x10425853c: as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter>>::spec_extend (src/vec/spec_extend.rs:61:23)", -"0x10425853c: alloc::vec::Vec::extend_from_slice (src/vec/mod.rs:3262:14)", -"0x10425853c: alloc::string::String::push_str (alloc/src/string.rs:1113:18)", -"0x10425853c: browserslist::resolve::{{closure}} (browserslist-rs-0.19.0/src/lib.rs:103:15)", -"0x10425853c: as core::iter::traits::iterator::Iterator>::fold::enumerate::{{closure}} (iter/adapters/enumerate.rs:140:27)", -"0x10425853c: core::iter::traits::iterator::Iterator::fold (iter/traits/iterator.rs:2602:21)", -"0x10425853c: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/enumerate.rs:146:19)", -"0x10425853c: browserslist::resolve (browserslist-rs-0.19.0/src/lib.rs:99:10)", -"0x10425853c: lightningcss::targets::Browsers::from_browserslist_with_config (lightningcss-1.0.0-alpha.68/src/targets.rs:64:25)", -"0x10425853c: lightningcss::targets::Browsers::from_browserslist (lightningcss-1.0.0-alpha.68/src/targets.rs:54:5)", -"0x10425853c: grimoire_css_lib::infrastructure::lightning_css_optimizer::LightningCssOptimizer::from_content (src/infrastructure/lightning_css_optimizer.rs:27:24)", -"0x10425853c: grimoire_css_lib::infrastructure::lightning_css_optimizer::LightningCssOptimizer::new (src/infrastructure/lightning_css_optimizer.rs:59:9)", -"0x10425853c: grimoire_css_lib::start (grimoire-css/src/lib.rs:73:25)", -"0x10425853c: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:164:11)", -"0x10457b114: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x10457b114: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x10457b114: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x1045802b4: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x1045802b4: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x1045802b4: regex_syntax::ast::visitor::HeapVisitor::visit (src/ast/visitor.rs:218:28)", -"0x1045802b4: regex_syntax::ast::visitor::visit (src/ast/visitor.rs:119:24)", -"0x1045802b4: regex_syntax::ast::parse::NestLimiter

::check (src/ast/parse.rs:2280:9)", -"0x104545b30: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:1024:32)", -"0x104545b30: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", -"0x104545b30: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", -"0x104545b30: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", -"0x104545b30: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x104273cf4: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:25:41)", -"0x104273cf4: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/meta/regex.rs:34:9)", -"0x104273cf4: as core::iter::traits::collect::FromIterator>::from_iter (src/fmt/rt.rs:3633:9)", -"0x104273cf4: core::iter::traits::iterator::Iterator::collect (src/util/pool.rs:2027:9)", -"0x104273cf4: indicatif::style::segment (src/util/search.rs:42:45)", -"0x104273cf4: indicatif::style::ProgressStyle::new (src/util/search.rs:115:30)", -"0x104257224: indicatif::style::ProgressStyle::default_spinner (indicatif-0.18.3/src/style.rs:78:9)", -"0x104257224: indicatif::progress_bar::ProgressBar::new_spinner (indicatif-0.18.3/src/progress_bar.rs:152:22)", -"0x104257224: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:156:14)", -"0x10454a1ec: regex_automata::hybrid::dfa::Builder::new (src/hybrid/dfa.rs:4003:23)", -"0x10454a1ec: regex_automata::meta::wrappers::HybridEngine::new (src/meta/wrappers.rs:598:26)", -"0x10454a1ec: regex_automata::meta::wrappers::Hybrid::new (src/meta/wrappers.rs:522:16)", -"0x10454a1ec: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:532:21)", -"0x10454a1ec: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", -"0x10454c638: regex_automata::meta::reverse_inner::extract (src/meta/reverse_inner.rs:116:1)", -"0x10454c638: regex_automata::meta::strategy::ReverseInner::new (src/meta/strategy.rs:1568:47)", -"0x10454c638: regex_automata::meta::strategy::new (src/meta/strategy.rs:177:18)", -"0x1045f5838: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", -"0x1045f5838: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", -"0x1045f5838: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", -"0x1045f5838: alloc::vec::Vec::append_elements (src/vec/mod.rs:2732:14)", -"0x1045f5838: as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter>>::spec_extend (src/vec/spec_extend.rs:61:23)", -"0x1045f5838: alloc::vec::Vec::extend_from_slice (src/vec/mod.rs:3262:14)", -"0x1045f5838: regex_automata::util::determinize::state::StateBuilderEmpty::into_matches (util/determinize/state.rs:200:16)", -"0x1045f5838: regex_automata::hybrid::dfa::Lazy::cache_start_one (src/hybrid/dfa.rs:2216:60)", -"0x1045f5838: regex_automata::hybrid::dfa::Lazy::cache_start_group (src/hybrid/dfa.rs:2194:14)", -"0x10428ca5c: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x10428ca5c: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x10428ca5c: lightningcss::declaration::parse_declaration (lightningcss-1.0.0-alpha.68/src/declaration.rs:534:18)", -"0x104509c04: as cssparser::rules_and_declarations::DeclarationParser>::parse_value (cssparser-0.33.0/src/rules_and_declarations.rs:0:0)", -"0x104509c04: as core::iter::traits::iterator::Iterator>::next::{{closure}} (cssparser-0.33.0/src/rules_and_declarations.rs:283:40)", -"0x104509c04: cssparser::parser::Parser::parse_entirely (cssparser-0.33.0/src/parser.rs:689:22)", -"0x104509c04: cssparser::parser::parse_until_before (cssparser-0.33.0/src/parser.rs:1059:35)", -"0x104509c04: cssparser::parser::parse_until_after (cssparser-0.33.0/src/parser.rs:1092:18)", -"0x104509c04: as core::iter::traits::iterator::Iterator>::next (cssparser-0.33.0/src/rules_and_declarations.rs:277:25)", -"0x104509c04: lightningcss::parser::NestedRuleParser::parse_nested (lightningcss-1.0.0-alpha.68/src/parser.rs:469:35)", -"0x10450c448: as cssparser::rules_and_declarations::QualifiedRuleParser>::parse_block (lightningcss-1.0.0-alpha.68/src/parser.rs:976:38)", -"0x1045210c8: as cssparser::rules_and_declarations::QualifiedRuleParser>::parse_block (lightningcss-1.0.0-alpha.68/src/parser.rs:435:5)", -"0x1045210c8: cssparser::rules_and_declarations::parse_qualified_rule::{{closure}} (cssparser-0.33.0/src/rules_and_declarations.rs:506:46)", -"0x1045210c8: cssparser::parser::Parser::parse_entirely (cssparser-0.33.0/src/parser.rs:689:22)", -"0x1045210c8: cssparser::parser::parse_nested_block (cssparser-0.33.0/src/parser.rs:1139:32)", -"0x1045210c8: cssparser::rules_and_declarations::parse_qualified_rule (cssparser-0.33.0/src/rules_and_declarations.rs:506:5)", -"0x1045210c8: as core::iter::traits::iterator::Iterator>::next (cssparser-0.33.0/src/rules_and_declarations.rs:396:30)", -"0x1045210c8: lightningcss::stylesheet::StyleSheet::parse_with (lightningcss-1.0.0-alpha.68/src/stylesheet.rs:190:45)", -"0x1045210c8: lightningcss::stylesheet::StyleSheet::parse (lightningcss-1.0.0-alpha.68/src/stylesheet.rs:124:5)", -"0x104173d58: ::optimize (src/infrastructure/lightning_css_optimizer.rs:82:30)", -"0x1045ebeac: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1045ebeac: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x1045ebeac: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x1045ebeac: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x1045ebeac: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1045ebeac: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x1045ebeac: grimoire_css_lib::buffer::MESSAGE_BUFFER::__init (grimoire-css/src/buffer.rs:10:64)", -"0x1045ebeac: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", -"0x1045ebeac: core::option::Option::unwrap_or_else (core/src/option.rs:1060:21)", -"0x1045ebeac: std::sys::thread_local::native::lazy::Storage::get_or_init_slow (thread_local/native/lazy.rs:78:42)", -"0x10425ae28: std::sys::thread_local::native::lazy::Storage::get_or_init (thread_local/native/lazy.rs:60:27)", -"0x10425ae28: grimoire_css_lib::buffer::MESSAGE_BUFFER::{{constant}}::{{closure}} (thread_local/native/mod.rs:94:29)", -"0x10425ae28: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", -"0x10425ae28: std::thread::local::LocalKey::try_with (src/thread/local.rs:314:37)", -"0x10425ae28: std::thread::local::LocalKey::with (src/thread/local.rs:279:20)", -"0x10425ae28: grimoire_css_lib::buffer::read_messages (grimoire-css/src/buffer.rs:20:20)", -"0x10425ae28: grimoire_css_lib::get_logged_messages (grimoire-css/src/lib.rs:92:5)", -"0x10425ae28: grimoire_css_lib::output_saved_messages (grimoire-css/src/lib.rs:215:20)", -"0x10425ae28: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:172:13)", -"0x10454a4b4: regex_automata::hybrid::dfa::Builder::new (src/hybrid/dfa.rs:4003:23)", -"0x10454a4b4: regex_automata::hybrid::dfa::DFA::builder (src/hybrid/dfa.rs:289:9)", -"0x10454a4b4: regex_automata::hybrid::regex::Builder::new (src/hybrid/regex.rs:774:24)", -"0x10454a4b4: regex_automata::meta::wrappers::HybridEngine::new (src/meta/wrappers.rs:615:17)", -"0x10454a4b4: regex_automata::meta::wrappers::Hybrid::new (src/meta/wrappers.rs:522:16)", -"0x10454a4b4: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:532:21)", -"0x10454a4b4: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", -"0x1042573c8: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1042573c8: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x1042573c8: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x1042573c8: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x1042573c8: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1042573c8: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x1042573c8: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x1042573c8: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x1042573c8: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", -"0x1042573c8: alloc::str::::to_owned (alloc/src/str.rs:211:62)", -"0x1042573c8: >::from (alloc/src/string.rs:3056:11)", -"0x1042573c8: <&str as alloc::string::SpecToString>::spec_to_string (alloc/src/string.rs:2977:21)", -"0x1042573c8: ::to_string (alloc/src/string.rs:2809:9)", -"0x1042573c8: indicatif::style::ProgressStyle::tick_strings::{{closure}} (indicatif-0.18.3/src/style.rs:150:48)", -"0x1042573c8: core::iter::adapters::map::map_fold::{{closure}} (iter/adapters/map.rs:88:28)", -"0x1042573c8: as core::iter::traits::iterator::Iterator>::fold (slice/iter/macros.rs:255:27)", -"0x1042573c8: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/map.rs:128:19)", -"0x1042573c8: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", -"0x1042573c8: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3774:26)", -"0x1042573c8: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", -"0x1042573c8: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:62:16)", -"0x1042573c8: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x1042573c8: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x1042573c8: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x1042573c8: indicatif::style::ProgressStyle::tick_strings (indicatif-0.18.3/src/style.rs:150:68)", -"0x1042573c8: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:157:51)", -"0x1045477f4: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x1045477f4: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x1045477f4: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", -"0x1045477f4: regex_automata::meta::regex::RegexInfo::new (src/meta/regex.rs:1944:19)", -"0x1045477f4: regex_automata::meta::regex::Builder::build_many_from_hir (src/meta/regex.rs:3609:20)", -"0x1045477f4: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3498:14)", -"0x1045477f4: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x10457eecc: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x10457eecc: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x10457eecc: regex_syntax::ast::parse::ParserI

::parse_uncounted_repetition (src/ast/parse.rs:1085:18)", -"0x1045453b4: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:1012:35)", -"0x1045453b4: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", -"0x1045453b4: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", -"0x1045453b4: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", -"0x1045453b4: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x10457dc04: regex_syntax::ast::parse::ParserI

::pop_group (src/ast/parse.rs:778:44)", -"0x104555e98: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x104555e98: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x104555e98: regex_syntax::hir::Repetition::with (src/hir/mod.rs:1849:18)", -"0x104555e98: regex_automata::meta::reverse_inner::flatten (src/meta/reverse_inner.rs:209:57)", -"0x104536124: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104536124: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104536124: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104536124: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104536124: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104536124: ::from_elem (src/vec/spec_from_elem.rs:15:21)", -"0x104536124: alloc::vec::from_elem (src/vec/mod.rs:3415:5)", -"0x104536124: regex_automata::nfa::thompson::map::Utf8SuffixMap::clear (nfa/thompson/map.rs:244:24)", -"0x104536124: regex_automata::nfa::thompson::compiler::Compiler::c_unicode_class_reverse_with_suffix (nfa/thompson/compiler.rs:1540:15)", -"0x104536124: regex_automata::nfa::thompson::compiler::Compiler::c_unicode_class (nfa/thompson/compiler.rs:1422:22)", -"0x104536124: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1026:50)", -"0x104213e24: std::path::Path::join (std/src/path.rs:2742:14)", -"0x104213e24: grimoire_css_lib::core::parser::parser_fs::ParserFs::collect_classes_single_output (core/parser/parser_fs.rs:62:41)", -"0x104213e24: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::build (core/css_builder/css_builder_fs.rs:93:22)", -"0x104213e24: grimoire_css_lib::commands::build::build (src/commands/build.rs:37:61)", -"0x104213e24: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", -"0x10452f350: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x10452f350: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x10452f350: regex_automata::dfa::onepass::InternalBuilder::add_dfa_state_for_nfa_state (src/dfa/onepass.rs:855:33)", -"0x104549950: regex_automata::dfa::onepass::InternalBuilder::add_start_state (src/dfa/onepass.rs:823:27)", -"0x104549950: regex_automata::dfa::onepass::InternalBuilder::build (src/dfa/onepass.rs:610:14)", -"0x104549950: regex_automata::dfa::onepass::Builder::build_from_nfa (src/dfa/onepass.rs:413:57)", -"0x104549950: regex_automata::meta::wrappers::OnePassEngine::new (src/meta/wrappers.rs:392:18)", -"0x104549950: regex_automata::meta::wrappers::OnePass::new (src/meta/wrappers.rs:331:17)", -"0x104549950: regex_automata::meta::strategy::Core::new (src/meta/strategy.rs:486:23)", -"0x104549950: regex_automata::meta::strategy::new (src/meta/strategy.rs:153:20)", -"0x1045d09f8: ::allocate (alloc/src/boxed.rs:250:14)", -"0x1045d09f8: alloc::raw_vec::RawVecInner::try_allocate_in (alloc/src/alloc.rs:476:47)", -"0x1045d09f8: alloc::raw_vec::RawVecInner::with_capacity_in (alloc/src/alloc.rs:422:15)", -"0x1045d09f8: alloc::raw_vec::RawVec::with_capacity_in (alloc/src/alloc.rs:190:20)", -"0x1045d09f8: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1045d09f8: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x1045d09f8: std::sys::args::unix::args (???:24:19)", -"0x1045d09f8: std::env::args_os (alloc/src/alloc.rs:865:21)", -"0x1045d09f8: std::env::args (alloc/src/alloc.rs:830:19)", -"0x1040b8f08: grimoire_css::main (grimoire-css/src/main.rs:28:29)", -"0x10454613c: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x10454613c: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x10454613c: regex_syntax::ast::visitor::HeapVisitor::visit (src/ast/visitor.rs:218:28)", -"0x10454613c: regex_syntax::ast::visitor::visit (src/ast/visitor.rs:119:24)", -"0x10454613c: regex_syntax::hir::translate::Translator::translate (src/hir/translate.rs:174:9)", -"0x10454613c: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3494:18)", -"0x10454613c: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x10457b354: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x10457b354: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x10457b354: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x10458effc: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x10458effc: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x10458effc: regex_syntax::hir::literal::PreferenceTrie::create_state (src/hir/literal.rs:2307:22)", -"0x10458effc: regex_syntax::hir::literal::PreferenceTrie::root (src/hir/literal.rs:2299:18)", -"0x10458effc: regex_syntax::hir::literal::PreferenceTrie::insert (src/hir/literal.rs:2269:29)", -"0x10458effc: regex_syntax::hir::literal::PreferenceTrie::minimize::{{closure}} (src/hir/literal.rs:2244:46)", -"0x10457ddec: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x10457ddec: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x10457ddec: regex_syntax::ast::parse::ParserI

::pop_group (src/ast/parse.rs:779:29)", -"0x10421be28: ::allocate (alloc/src/alloc.rs:250:14)", -"0x10421be28: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x10421be28: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x10421be28: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x10421be28: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x10421be28: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x10421be28: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x10421be28: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x10421be28: std::sys::os_str::bytes::Slice::to_owned (sys/os_str/bytes.rs:314:33)", -"0x10421be28: std::ffi::os_str::OsStr::to_os_string (src/ffi/os_str.rs:984:38)", -"0x10421be28: std::path::Path::to_path_buf (std/src/path.rs:2351:34)", -"0x10421be28: grimoire_css_lib::core::parser::parser_fs::ParserFs::collect_spells_from_path (core/parser/parser_fs.rs:247:36)", -"0x10457e468: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x10457e468: regex_syntax::ast::parse::ParserI

::push_or_add_alternation (src/ast/parse.rs:685:19)", -"0x10457e468: regex_syntax::ast::parse::ParserI

::push_alternate (src/ast/parse.rs:668:14)", -"0x1045993e4: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1045993e4: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x1045993e4: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x1045993e4: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x1045993e4: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1045993e4: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x1045993e4: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:54:33)", -"0x1045993e4: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x1045993e4: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x1045993e4: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x1045993e4: regex_syntax::unicode::hir_class (regex-syntax-0.8.8/src/unicode.rs:456:10)", -"0x1045993e4: regex_syntax::unicode::perl_space::imp (regex-syntax-0.8.8/src/unicode.rs:421:12)", -"0x1045993e4: regex_syntax::unicode::perl_space (regex-syntax-0.8.8/src/unicode.rs:424:5)", -"0x1045993e4: regex_syntax::hir::translate::TranslatorI::hir_perl_unicode_class (src/hir/translate.rs:1090:22)", -"0x104555cec: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104555cec: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104555cec: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104555cec: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104555cec: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104555cec: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x104555cec: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x104555cec: as core::clone::Clone>::clone (alloc/src/boxed.rs:1774:14)", -"0x104555cec: regex_automata::meta::reverse_inner::flatten (src/meta/reverse_inner.rs:206:65)", -"0x104103a20: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104103a20: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104103a20: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104103a20: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104103a20: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104103a20: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x104103a20: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:31:34)", -"0x104103a20: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x104103a20: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x104103a20: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x104103a20: browserslist::queries::last_n_browsers::last_n_browsers (src/queries/last_n_browsers.rs:17:10)", -"0x1045851dc: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x1045851dc: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x1045851dc: regex_syntax::ast::parse::ParserI

::parse_group (src/ast/parse.rs:1286:22)", -"0x10454dda4: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x10454dda4: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x10454dda4: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", -"0x10454dda4: regex_automata::meta::strategy::new (src/meta/strategy.rs:174:23)", -"0x10416fc10: ::allocate (alloc/src/alloc.rs:250:14)", -"0x10416fc10: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x10416fc10: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x10416fc10: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x10416fc10: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x10416fc10: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x10416fc10: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x10416fc10: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x10416fc10: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", -"0x10416fc10: alloc::str::::to_owned (alloc/src/str.rs:211:62)", -"0x10416fc10: >::from (alloc/src/string.rs:3056:11)", -"0x10416fc10: ::spec_to_string (alloc/src/string.rs:2977:21)", -"0x10416fc10: ::to_string (alloc/src/string.rs:2809:9)", -"0x10416fc10: grimoire_css_lib::core::spell::Spell::new (src/core/spell.rs:151:37)", -"0x10421410c: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::build (core/css_builder/css_builder_fs.rs:103:34)", -"0x10421410c: grimoire_css_lib::commands::build::build (src/commands/build.rs:37:61)", -"0x10421410c: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", -"0x104226588: core::iter::adapters::map::map_try_fold::{{closure}} (iter/adapters/map.rs:95:28)", -"0x104226588: core::iter::traits::iterator::Iterator::try_fold (iter/traits/iterator.rs:2426:21)", -"0x104226588: as core::iter::traits::iterator::Iterator>::try_fold (iter/adapters/map.rs:121:19)", -"0x104226588: as core::iter::traits::iterator::Iterator>::try_fold (iter/adapters/mod.rs:192:14)", -"0x104226588: as core::iter::traits::iterator::Iterator>::fold (src/iter/mod.rs:378:18)", -"0x104226588: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", -"0x104226588: >::extend (alloc/src/string.rs:2464:26)", -"0x104226588: >::from_iter (alloc/src/string.rs:2363:21)", -"0x104226588: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x104226588: as core::iter::traits::collect::FromIterator>>::from_iter::{{closure}} (core/src/result.rs:2054:51)", -"0x104226588: core::iter::adapters::try_process (iter/adapters/mod.rs:160:17)", -"0x104226588: as core::iter::traits::collect::FromIterator>>::from_iter (core/src/result.rs:2054:9)", -"0x104226588: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::escape_css_class_name (core/css_generator/css_generator_base.rs:301:14)", -"0x104226588: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::generate_css_class_name (core/css_generator/css_generator_base.rs:238:43)", -"0x10416c9e8: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_str (serde_json-1.0.147/src/de.rs:0:0)", -"0x10416c9e8: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_string (serde_json-1.0.147/src/de.rs:1555:14)", -"0x10416c9e8: serde_core::de::impls::::deserialize (src/de/impls.rs:693:22)", -"0x10415f750: as serde_core::de::Visitor>::visit_some (src/de/impls.rs:905:9)", -"0x10415f750: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_option (serde_json-1.0.147/src/de.rs:1681:26)", -"0x10415f750: serde_core::de::impls::>::deserialize (src/de/impls.rs:924:22)", -"0x10415f750: as serde_core::de::DeserializeSeed>::deserialize (src/de/mod.rs:825:9)", -"0x104160fa0: as serde_core::de::MapAccess>::next_value_seed (serde_json-1.0.147/src/de.rs:2031:14)", -"0x104160fa0: serde_core::de::MapAccess::next_value (src/de/mod.rs:1918:14)", -"0x104160fa0: ::deserialize::__Visitor as serde_core::de::Visitor>::visit_map (core/config/config_fs.rs:93:21)", -"0x104160fa0: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_struct (serde_json-1.0.147/src/de.rs:1849:39)", -"0x104160fa0: grimoire_css_lib::core::config::config_fs::_::::deserialize (core/config/config_fs.rs:93:21)", -"0x104160fa0: as serde_core::de::DeserializeSeed>::deserialize (src/de/mod.rs:825:9)", -"0x104160fa0: as serde_core::de::SeqAccess>::next_element_seed (serde_json-1.0.147/src/de.rs:1963:31)", -"0x104160fa0: serde_core::de::SeqAccess::next_element (src/de/mod.rs:1773:14)", -"0x104160fa0: >::deserialize::VecVisitor as serde_core::de::Visitor>::visit_seq (src/de/impls.rs:1164:50)", -"0x104160fa0: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_seq (serde_json-1.0.147/src/de.rs:1750:39)", -"0x104160fa0: serde_core::de::impls::>::deserialize (src/de/impls.rs:1175:22)", -"0x104159f30: as serde_core::de::MapAccess>::next_value_seed (serde_json-1.0.147/src/de.rs:2031:14)", -"0x104159f30: serde_core::de::MapAccess::next_value (src/de/mod.rs:1918:14)", -"0x104159f30: ::deserialize::__Visitor as serde_core::de::Visitor>::visit_map (core/config/config_fs.rs:69:21)", -"0x104159f30: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_struct (serde_json-1.0.147/src/de.rs:1849:39)", -"0x104159f30: grimoire_css_lib::core::config::config_fs::_::::deserialize (core/config/config_fs.rs:69:21)", -"0x104159f30: serde_json::de::from_trait (serde_json-1.0.147/src/de.rs:2501:22)", -"0x104159f30: serde_json::de::from_str (serde_json-1.0.147/src/de.rs:2701:5)", -"0x104159f30: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:174:41)", -"0x1042572e4: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1042572e4: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x1042572e4: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x1042572e4: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x1042572e4: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1042572e4: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x1042572e4: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x1042572e4: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x1042572e4: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", -"0x1042572e4: alloc::str::::to_owned (alloc/src/str.rs:211:62)", -"0x1042572e4: >::from (alloc/src/string.rs:3056:11)", -"0x1042572e4: <&str as alloc::string::SpecToString>::spec_to_string (alloc/src/string.rs:2977:21)", -"0x1042572e4: ::to_string (alloc/src/string.rs:2809:9)", -"0x1042572e4: indicatif::style::ProgressStyle::tick_strings::{{closure}} (indicatif-0.18.3/src/style.rs:150:48)", -"0x1042572e4: core::iter::adapters::map::map_fold::{{closure}} (iter/adapters/map.rs:88:28)", -"0x1042572e4: as core::iter::traits::iterator::Iterator>::fold (slice/iter/macros.rs:255:27)", -"0x1042572e4: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/map.rs:128:19)", -"0x1042572e4: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", -"0x1042572e4: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3774:26)", -"0x1042572e4: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", -"0x1042572e4: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:62:16)", -"0x1042572e4: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x1042572e4: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x1042572e4: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x1042572e4: indicatif::style::ProgressStyle::tick_strings (indicatif-0.18.3/src/style.rs:150:68)", -"0x1042572e4: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:157:51)", -"0x1045d281c: ::allocate (alloc/src/boxed.rs:250:14)", -"0x1045d281c: alloc::raw_vec::RawVecInner::try_allocate_in (alloc/src/alloc.rs:476:47)", -"0x1045d281c: alloc::raw_vec::RawVecInner::with_capacity_in (alloc/src/alloc.rs:422:15)", -"0x1045d281c: alloc::raw_vec::RawVec::with_capacity_in (alloc/src/alloc.rs:190:20)", -"0x1045d281c: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1045d281c: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x1045d281c: std::io::buffered::bufwriter::BufWriter::with_capacity (src/str/pattern.rs:122:33)", -"0x1045d281c: std::io::buffered::linewriter::LineWriter::with_capacity (src/iter/range.rs:110:29)", -"0x1045d281c: std::io::buffered::linewriter::LineWriter::new (src/iter/range.rs:90:9)", -"0x1045d281c: std::io::stdio::stdout::{{closure}} (zmij-0.1.9/src/traits.rs:719:61)", -"0x1045d281c: std::sync::once_lock::OnceLock::get_or_init::{{closure}} (src/ops/function.rs:313:50)", -"0x1045d281c: std::sync::once_lock::OnceLock::initialize::{{closure}} (src/ops/function.rs:526:19)", -"0x1045d281c: std::sync::poison::once::Once::call_once_force::{{closure}} (alloc/src/str.rs:214:40)", -"0x1045fb144: std::sync::poison::once::Once::call_once_force (sync/poison/once.rs:214:20)", -"0x1045fb144: std::sync::once_lock::OnceLock::initialize (src/ops/function.rs:525:19)", -"0x1045d3370: std::sync::once_lock::OnceLock::get_or_try_init (src/sync/once_lock.rs:401:14)", -"0x1045d3370: std::sync::once_lock::OnceLock::get_or_init (src/ops/function.rs:313:20)", -"0x1045d3370: std::io::stdio::stdout (zmij-0.1.9/src/traits.rs:719:14)", -"0x1045d3370: std::io::stdio::print_to (zmij-0.1.9/src/traits.rs:1164:21)", -"0x1045d3370: std::io::stdio::_print (zmij-0.1.9/src/traits.rs:1275:5)", -"0x104256ca8: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:131:5)", -"0x1045ed228: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x1045ed228: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x1045ed228: alloc::boxed::Box::pin (alloc/src/boxed.rs:322:9)", -"0x1045ed228: std::sys::sync::mutex::pthread::Mutex::get::{{closure}} (sync/mutex/pthread.rs:23:27)", -"0x1045ed228: std::sys::sync::once_box::OnceBox::initialize (sys/sync/once_box.rs:63:72)", -"0x1045d2e40: std::sys::sync::once_box::OnceBox::get_or_init (sys/sync/once_box.rs:51:26)", -"0x1045d2e40: std::sys::sync::mutex::pthread::Mutex::get (src/slice/mod.rs:22:18)", -"0x1045d2e40: std::sys::sync::mutex::pthread::Mutex::lock (src/slice/mod.rs:36:23)", -"0x1045d2e40: std::sync::reentrant_lock::ReentrantLock::lock (alloc/src/fmt.rs:294:28)", -"0x1045d2e40: std::io::stdio::Stderr::lock (zmij-0.1.9/src/traits.rs:1001:40)", -"0x1045d3244: <&std::io::stdio::Stdout as std::io::Write>::write_fmt (src/io/stdio.rs:834:14)", -"0x1045d3244: ::write_fmt (zmij-0.1.9/src/traits.rs:808:18)", -"0x1045d3244: std::io::stdio::print_to (zmij-0.1.9/src/traits.rs:1164:32)", -"0x1045d3244: std::io::stdio::_print (zmij-0.1.9/src/traits.rs:1275:5)", -"0x1045df008: alloc::raw_vec::finish_grow (src/raw_vec/mod.rs:0:0)", -"0x1045d117c: alloc::raw_vec::RawVecInner::grow_exact (src/raw_vec/mod.rs:686:19)", -"0x1045d117c: alloc::raw_vec::RawVecInner::try_reserve_exact (alloc/src/alloc.rs:607:18)", -"0x1045d117c: alloc::raw_vec::RawVec::try_reserve_exact (alloc/src/alloc.rs:381:20)", -"0x1045d117c: alloc::vec::Vec::try_reserve_exact (src/vec/mod.rs:1450:18)", -"0x1045d117c: alloc::string::String::try_reserve_exact (src/fmt/rt.rs:1341:18)", -"0x1045d117c: std::fs::read_to_string::inner (src/ptr/mod.rs:351:16)", -"0x1041595a4: std::fs::read_to_string (std/src/fs.rs:355:5)", -"0x1041595a4: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:173:23)", -"0x1045f1908: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x1045f1908: alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle (src/raw_vec/mod.rs:557:35)", -"0x1045f17b0: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", -"0x1045f17b0: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", -"0x1045f17b0: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", -"0x1045f17b0: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3770:18)", -"0x1045f17b0: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", -"0x1045f17b0: as core::iter::traits::collect::Extend>::extend (src/vec/mod.rs:3702:9)", -"0x1045f17b0: regex::builders::Builder::new (regex-1.12.2/src/builders.rs:66:16)", -"0x10452f664: ::allocate (alloc/src/alloc.rs:250:14)", -"0x10452f664: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x10452f664: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x10452f664: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x10452f664: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x10452f664: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x10452f664: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x10452f664: as core::clone::Clone>::clone (src/vec/mod.rs:3515:9)", -"0x10452f664: regex_automata::dfa::remapper::Remapper::remap (src/dfa/remapper.rs:133:31)", -"0x10452f664: regex_automata::dfa::onepass::InternalBuilder::shuffle_states (src/dfa/onepass.rs:755:18)", -"0x104568da4: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104568da4: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104568da4: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104568da4: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104568da4: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104568da4: ::from_elem (src/vec/spec_from_elem.rs:15:21)", -"0x104568da4: alloc::vec::from_elem (src/vec/mod.rs:3415:5)", -"0x104568da4: regex_automata::util::captures::Captures::all (src/util/captures.rs:217:50)", -"0x104568da4: ::create_cache (src/meta/strategy.rs:675:25)", -"0x104568da4: ::create_cache (src/meta/strategy.rs:1304:19)", -"0x10427845c: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x10427845c: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x10427845c: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x10417b078: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x10417b078: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x10417b078: lightningcss::rules::CssRuleList::minify (src/rules/mod.rs:783:19)", -"0x104593394: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x104593394: ::drop (src/hir/mod.rs:1931:25)", -"0x1045342f0: regex_automata::nfa::thompson::compiler::Compiler::patch (nfa/thompson/compiler.rs:1637:35)", -"0x1045342f0: regex_automata::nfa::thompson::compiler::Compiler::c_zero_or_one (nfa/thompson/compiler.rs:1340:14)", -"0x1045342f0: regex_automata::nfa::thompson::compiler::Compiler::c_repetition (nfa/thompson/compiler.rs:1171:34)", -"0x1045342f0: regex_automata::nfa::thompson::compiler::Compiler::c (nfa/thompson/compiler.rs:1028:41)", -"0x104545ab8: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x104545ab8: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x104545ab8: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:1020:34)", -"0x104545ab8: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", -"0x104545ab8: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", -"0x104545ab8: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", -"0x104545ab8: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x10457dd3c: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x10457dd3c: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x10457dd3c: regex_syntax::ast::parse::ParserI

::pop_group (src/ast/parse.rs:785:27)", -"0x1045912b0: ::visit_post (src/hir/translate.rs:0:0)", -"0x104213f7c: std::path::Path::join (std/src/path.rs:2742:14)", -"0x104213f7c: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::build (core/css_builder/css_builder_fs.rs:94:71)", -"0x104213f7c: grimoire_css_lib::commands::build::build (src/commands/build.rs:37:61)", -"0x104213f7c: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", -"0x1042141bc: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", -"0x1042141bc: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", -"0x1042141bc: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", -"0x1042141bc: alloc::vec::Vec::append_elements (src/vec/mod.rs:2732:14)", -"0x1042141bc: as alloc::vec::spec_extend::SpecExtend>>::spec_extend (src/vec/spec_extend.rs:37:18)", -"0x1042141bc: as core::iter::traits::collect::Extend>::extend (src/vec/mod.rs:3702:9)", -"0x1042141bc: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::build (core/css_builder/css_builder_fs.rs:113:32)", -"0x1042141bc: grimoire_css_lib::commands::build::build (src/commands/build.rs:37:61)", -"0x1042141bc: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", -"0x10457e490: regex_syntax::ast::parse::ParserI

::push_or_add_alternation (src/ast/parse.rs:685:31)", -"0x10457e490: regex_syntax::ast::parse::ParserI

::push_alternate (src/ast/parse.rs:668:14)", -"0x10422691c: ::allocate (alloc/src/alloc.rs:250:14)", -"0x10422691c: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x10422691c: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x10422691c: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x10422691c: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x10422691c: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x10422691c: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x10422691c: as core::clone::Clone>::clone (src/vec/mod.rs:3515:9)", -"0x10422691c: ::clone (alloc/src/string.rs:2308:32)", -"0x10422691c: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::generate_css_class_name (core/css_generator/css_generator_base.rs:248:50)", -"0x1045f6538: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x1045f6538: alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle (src/raw_vec/mod.rs:557:35)", -"0x10458cd9c: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", -"0x10458cd9c: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", -"0x10458cd9c: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", -"0x10458cd9c: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3770:18)", -"0x10458cd9c: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", -"0x10458cd9c: as core::iter::traits::collect::Extend>::extend (src/vec/mod.rs:3702:9)", -"0x10458cd9c: regex_syntax::hir::literal::Seq::union (src/hir/literal.rs:1233:15)", -"0x10458cd9c: regex_syntax::hir::literal::Extractor::union (src/hir/literal.rs:613:14)", -"0x10458bd20: regex_syntax::hir::literal::Extractor::extract_alternation (src/hir/literal.rs:428:24)", -"0x10458bd20: regex_syntax::hir::literal::Extractor::extract (src/hir/literal.rs:196:22)", -"0x10454be5c: ::allocate (alloc/src/alloc.rs:250:14)", -"0x10454be5c: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x10454be5c: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x10454be5c: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x10454be5c: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x10454be5c: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x10454be5c: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:54:33)", -"0x10454be5c: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x10454be5c: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x10454be5c: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x10454be5c: regex_automata::meta::reverse_inner::top_concat (src/meta/reverse_inner.rs:183:65)", -"0x10454be5c: regex_automata::meta::reverse_inner::extract (src/meta/reverse_inner.rs:62:28)", -"0x10454be5c: regex_automata::meta::strategy::ReverseInner::new (src/meta/strategy.rs:1568:47)", -"0x10454be5c: regex_automata::meta::strategy::new (src/meta/strategy.rs:177:18)", -"0x104581a60: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x1045854f4: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x1045854f4: regex_syntax::ast::parse::ParserI

::parse_group (src/ast/parse.rs:1278:26)", -"0x104585fd8: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x104585fd8: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x104585fd8: regex_syntax::ast::Ast::empty (src/ast/mod.rs:501:20)", -"0x1045854e8: regex_syntax::ast::parse::ParserI

::parse_group (src/ast/parse.rs:1278:35)", -"0x10421ec7c: ::allocate (alloc/src/alloc.rs:250:14)", -"0x10421ec7c: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x10421ec7c: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x10421ec7c: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x10421ec7c: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x10421ec7c: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x10421ec7c: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:31:34)", -"0x10421ec7c: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x10421ec7c: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x10421ec7c: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x1042268a8: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::generate_effect (core/css_generator/css_generator_base.rs:330:30)", -"0x1042268a8: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::generate_css_class_name (core/css_generator/css_generator_base.rs:246:30)", -"0x1042263e0: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::generate_css_class_name (core/css_generator/css_generator_base.rs:237:54)", -"0x1045df10c: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x1045df10c: alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle (ahash-0.8.12/src/random_state.rs:557:35)", -"0x1040d7840: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", -"0x1040d7840: alloc::raw_vec::RawVec::reserve (ahash-0.8.12/src/random_state.rs:331:20)", -"0x1040d7840: alloc::vec::Vec::reserve (???:1339:18)", -"0x1040d7840: alloc::vec::Vec::append_elements (???:2732:14)", -"0x1040d7840: as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter>>::spec_extend (???:61:23)", -"0x1040d7840: alloc::vec::Vec::extend_from_slice (???:3262:14)", -"0x1040d7840: alloc::string::String::push_str (???:1113:18)", -"0x1040d7840: ::write_str (???:3279:14)", -"0x104120010: core::fmt::rt::Argument::fmt (src/fmt/rt.rs:173:76)", -"0x104120010: core::fmt::write (src/sync/atomic.rs:1468:25)", -"0x1040d772c: <&mut W as core::fmt::Write::write_fmt::SpecWriteFmt>::spec_write_fmt (src/fmt/mod.rs:233:21)", -"0x1040d772c: core::fmt::Write::write_fmt (src/num/uint_macros.rs:238:14)", -"0x1040d772c: alloc::fmt::format::format_inner (???:649:14)", -"0x1042281d0: alloc::fmt::format::{{closure}} (alloc/src/fmt.rs:654:34)", -"0x1042281d0: core::option::Option::map_or_else (core/src/option.rs:1271:21)", -"0x1042281d0: alloc::fmt::format (alloc/src/fmt.rs:654:19)", -"0x1042281d0: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::handle_generic_css (core/css_generator/css_generator_base.rs:511:24)", -"0x10457abfc: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x10457abfc: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x10457abfc: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x1045461a4: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x1045461a4: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x1045461a4: regex_syntax::ast::visitor::HeapVisitor::visit_class (src/ast/visitor.rs:322:34)", -"0x1045461a4: regex_syntax::ast::visitor::HeapVisitor::induct (src/ast/visitor.rs:268:22)", -"0x1045461a4: regex_syntax::ast::visitor::HeapVisitor::visit (src/ast/visitor.rs:216:35)", -"0x1045461a4: regex_syntax::ast::visitor::visit (src/ast/visitor.rs:119:24)", -"0x1045461a4: regex_syntax::hir::translate::Translator::translate (src/hir/translate.rs:174:9)", -"0x1045461a4: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3494:18)", -"0x1045461a4: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x10457acb8: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x10457acb8: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x10457acb8: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x10458f198: alloc::vec::Vec::insert_mut (src/vec/mod.rs:2096:22)", -"0x10458f198: alloc::vec::Vec::insert (src/vec/mod.rs:2049:22)", -"0x10458f198: regex_syntax::hir::literal::PreferenceTrie::insert (src/hir/literal.rs:2283:45)", -"0x10458f198: regex_syntax::hir::literal::PreferenceTrie::minimize::{{closure}} (src/hir/literal.rs:2244:46)", -"0x1045e5024: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x1045e5024: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x1045e5024: ahash::random_state::get_fixed_seeds::{{closure}} (ahash-0.8.12/src/random_state.rs:78:17)", -"0x1045e5024: once_cell::race::once_box::OnceBox::get_or_init::{{closure}} (once_cell-1.21.3/src/race.rs:437:62)", -"0x1045e5024: once_cell::race::once_box::OnceBox::init (once_cell-1.21.3/src/race.rs:463:23)", -"0x104114940: once_cell::race::once_box::OnceBox::get_or_try_init (once_cell-1.21.3/src/race.rs:456:30)", -"0x104114940: once_cell::race::once_box::OnceBox::get_or_init (once_cell-1.21.3/src/race.rs:437:24)", -"0x104114940: ahash::random_state::get_fixed_seeds (ahash-0.8.12/src/random_state.rs:75:19)", -"0x104114940: ahash::random_state::RandomState::new (ahash-0.8.12/src/random_state.rs:236:21)", -"0x104114940: as core::iter::traits::collect::FromIterator<(K,V)>>::from_iter (ahash-0.8.12/src/hash_map.rs:354:46)", -"0x104114940: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x104114940: browserslist_data::caniuse::BROWSER_VERSION_ALIASES::{{closure}} (browserslist-data-0.1.4/src/caniuse.rs:62:10)", -"0x104114940: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", -"0x10453ef4c: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x10453ef4c: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x10453ef4c: regex_automata::util::determinize::epsilon_closure (util/determinize/mod.rs:384:11)", -"0x1045f53c0: regex_automata::hybrid::dfa::Lazy::cache_start_one (src/hybrid/dfa.rs:2223:9)", -"0x1045f53c0: regex_automata::hybrid::dfa::Lazy::cache_start_group (src/hybrid/dfa.rs:2194:14)", -"0x104555f78: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104555f78: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104555f78: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104555f78: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104555f78: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104555f78: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x104555f78: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x104555f78: as core::clone::Clone>::clone (src/vec/mod.rs:3515:9)", -"0x104555f78: as core::clone::Clone>::clone (src/hir/interval.rs:33:10)", -"0x104555f78: ::clone (src/hir/mod.rs:1050:10)", -"0x104555f78: ::clone (src/hir/mod.rs:832:13)", -"0x104555f78: regex_automata::meta::reverse_inner::flatten (src/meta/reverse_inner.rs:207:47)", -"0x10458f660: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x10458f660: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x10458f660: regex_syntax::hir::interval::IntervalSet::push (src/hir/interval.rs:86:21)", -"0x10458f660: regex_syntax::hir::ClassUnicode::push (src/hir/mod.rs:1078:18)", -"0x10458f660: ::visit_class_set_item_post (src/hir/translate.rs:515:25)", -"0x104556a6c: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104556a6c: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104556a6c: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104556a6c: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104556a6c: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104556a6c: ::from_elem (src/vec/spec_from_elem.rs:15:21)", -"0x104556a6c: alloc::vec::from_elem (src/vec/mod.rs:3415:5)", -"0x104556a6c: regex_automata::util::captures::Captures::all (src/util/captures.rs:217:50)", -"0x104556a6c: ::create_cache (src/meta/strategy.rs:675:25)", -"0x104147738: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104147738: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104147738: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104147738: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104147738: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104147738: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x104147738: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x104147738: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x104147738: std::sys::os_str::bytes::Slice::to_owned (sys/os_str/bytes.rs:314:33)", -"0x104147738: std::ffi::os_str::OsStr::to_os_string (src/ffi/os_str.rs:984:38)", -"0x104147738: >::from (std/src/path.rs:1845:34)", -"0x104147738: glob::fill_todo (glob-0.3.3/src/lib.rs:924:17)", -"0x104165d08: as core::iter::traits::iterator::Iterator>::next (iter/adapters/flatten.rs:226:20)", -"0x104165d08: grimoire_css_lib::core::config::config_fs::ConfigFs::expand_glob_patterns (core/config/config_fs.rs:566:40)", -"0x1041051fc: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1041051fc: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x1041051fc: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x1041051fc: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x1041051fc: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1041051fc: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x1041051fc: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:31:34)", -"0x1041051fc: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x1041051fc: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x1041051fc: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x1041051fc: browserslist::queries::percentage::percentage (src/queries/percentage.rs:20:10)", -"0x10415f3a4: std::path::Path::join (std/src/path.rs:2742:14)", -"0x10415f3a4: grimoire_css_lib::core::filesystem::Filesystem::get_config_path (src/core/filesystem.rs:49:40)", -"0x10459ba10: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x10459ba10: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x10459ba10: regex_syntax::hir::Hir::concat (src/hir/mod.rs:488:25)", -"0x1045441a0: regex_automata::hybrid::dfa::DFA::start_state (src/hybrid/dfa.rs:1574:32)", -"0x1045441a0: regex_automata::hybrid::dfa::DFA::start_state_reverse (src/hybrid/dfa.rs:1636:14)", -"0x1045441a0: regex_automata::hybrid::search::init_rev (src/hybrid/search.rs:685:19)", -"0x1045441a0: regex_automata::hybrid::search::find_rev_imp (src/hybrid/search.rs:319:19)", -"0x1045441a0: regex_automata::hybrid::search::find_rev (src/hybrid/search.rs:307:9)", -"0x10455a8c0: regex_automata::hybrid::dfa::DFA::try_search_rev (src/hybrid/dfa.rs:796:24)", -"0x10455a8c0: regex_automata::hybrid::regex::Regex::try_search (src/hybrid/regex.rs:496:14)", -"0x1045b66ac: ::allocate (alloc/src/boxed.rs:250:14)", -"0x1045b66ac: alloc::raw_vec::RawVecInner::try_allocate_in (alloc/src/alloc.rs:476:47)", -"0x1045b66ac: alloc::raw_vec::RawVecInner::with_capacity_in (alloc/src/alloc.rs:422:15)", -"0x1045b66ac: alloc::raw_vec::RawVec::with_capacity_in (alloc/src/alloc.rs:190:20)", -"0x1045b66ac: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1045b66ac: ::to_vec_in::ConvertVec>::to_vec (src/num/uint_macros.rs:445:29)", -"0x1045b66ac: alloc::slice::::to_vec_in (src/num/uint_macros.rs:398:16)", -"0x1045b66ac: alloc::slice::::to_vec (src/num/uint_macros.rs:374:14)", -"0x1045b66ac: std::sys::os_str::bytes::Slice::to_owned (src/fmt/mod.rs:314:33)", -"0x1045b66ac: std::ffi::os_str::OsStr::to_os_string (src/io/error.rs:984:38)", -"0x1045b66ac: std::path::Path::to_path_buf (src/ptr/mut_ptr.rs:2351:34)", -"0x1045b66ac: std::sys::fs::unix::readdir (io/error/repr_bitpacked.rs:1844:25)", -"0x1045b66ac: std::sys::fs::read_dir (src/convert/num.rs:56:5)", -"0x104146928: std::fs::read_dir (std/src/fs.rs:3100:5)", -"0x104146928: glob::fill_todo (glob-0.3.3/src/lib.rs:938:24)", -"0x1045e3794: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x1045e3794: alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle (src/raw_vec/mod.rs:557:35)", -"0x1040f9828: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", -"0x1040f9828: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", -"0x1040f9828: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", -"0x1040f9828: alloc::vec::Vec::append_elements (src/vec/mod.rs:2732:14)", -"0x1040f9828: alloc::vec::Vec::append (src/vec/mod.rs:2721:18)", -"0x1040f9828: browserslist::resolve::{{closure}} (browserslist-rs-0.19.0/src/lib.rs:122:26)", -"0x1040f9828: as core::iter::traits::iterator::Iterator>::try_fold::enumerate::{{closure}} (iter/adapters/enumerate.rs:119:27)", -"0x1040f9828: as core::iter::traits::iterator::Iterator>::try_fold (src/vec/into_iter.rs:351:25)", -"0x1040f9828: as core::iter::traits::iterator::Iterator>::try_fold (iter/adapters/enumerate.rs:125:19)", -"0x1040f9828: browserslist::resolve (browserslist-rs-0.19.0/src/lib.rs:111:10)", -"0x1040f9828: browserslist::queries::defaults::defaults (src/queries/defaults.rs:5:5)", -"0x1040f9828: browserslist::queries::query (src/queries/mod.rs:218:32)", -"0x1045394f8: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1045394f8: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x1045394f8: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x1045394f8: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x1045394f8: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1045394f8: ::from_elem (src/vec/spec_from_elem.rs:15:21)", -"0x1045388a0: alloc::vec::from_elem (src/vec/mod.rs:3415:5)", -"0x1045388a0: regex_automata::nfa::thompson::map::Utf8BoundedMap::clear (nfa/thompson/map.rs:130:24)", -"0x1045388a0: regex_automata::nfa::thompson::compiler::Utf8State::clear (nfa/thompson/compiler.rs:1778:23)", -"0x1045388a0: regex_automata::nfa::thompson::compiler::Utf8Compiler::new (nfa/thompson/compiler.rs:1789:15)", -"0x104220360: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104220360: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104220360: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104220360: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104220360: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104220360: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x104220360: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x104220360: as core::clone::Clone>::clone (src/vec/mod.rs:3515:9)", -"0x104220360: ::clone (alloc/src/string.rs:2308:32)", -"0x104220360: grimoire_css_lib::core::parser::parser_base::Parser::collect_classes (core/parser/parser_base.rs:160:66)", -"0x104156d54: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x104156d54: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x104156d54: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x10421bef8: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x10421bef8: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x10421bef8: grimoire_css_lib::core::parser::parser_fs::ParserFs::collect_spells_from_path (core/parser/parser_fs.rs:247:25)", -"0x10459a5e8: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", -"0x10459a5e8: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", -"0x10459a5e8: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", -"0x10459a5e8: alloc::vec::Vec::append_elements (src/vec/mod.rs:2732:14)", -"0x10459a5e8: as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter>>::spec_extend (src/vec/spec_extend.rs:61:23)", -"0x10459a5e8: as core::iter::traits::collect::Extend<&T>>::extend (src/vec/mod.rs:3940:14)", -"0x10459a5e8: regex_syntax::hir::interval::IntervalSet::union (src/hir/interval.rs:138:21)", -"0x10459a5e8: regex_syntax::hir::ClassUnicode::union (src/hir/mod.rs:1138:18)", -"0x10459a5e8: regex_syntax::hir::class_chars (src/hir/mod.rs:2945:21)", -"0x10459a5e8: regex_syntax::hir::Hir::alternation (src/hir/mod.rs:616:28)", -"0x104145fac: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x104145fac: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x104145fac: glob::Pattern::new (glob-0.3.3/src/lib.rs:682:50)", -"0x104543990: regex_automata::hybrid::dfa::DFA::next_state (src/hybrid/dfa.rs:1228:32)", -"0x104543990: regex_automata::hybrid::search::find_rev_imp (src/hybrid/search.rs:404:22)", -"0x104543990: regex_automata::hybrid::search::find_rev (src/hybrid/search.rs:307:9)", -"0x10458ba2c: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x10458ba2c: regex_syntax::hir::literal::Seq::singleton (src/hir/literal.rs:783:30)", -"0x10458ba2c: regex_syntax::hir::literal::Extractor::extract_concat (src/hir/literal.rs:396:23)", -"0x10458ba2c: regex_syntax::hir::literal::Extractor::extract (src/hir/literal.rs:190:45)", -"0x1042579f4: std::sys::thread_local::native::eager::Storage::initialize (thread_local/native/eager.rs:47:13)", -"0x1042579f4: std::sys::thread_local::native::eager::Storage::get (thread_local/native/eager.rs:36:45)", -"0x1042579f4: std::thread::spawnhook::SPAWN_HOOKS::{{constant}}::{{closure}} (thread_local/native/mod.rs:67:29)", -"0x1042579f4: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", -"0x1042579f4: std::thread::local::LocalKey::try_with (src/thread/local.rs:314:37)", -"0x1042579f4: std::thread::spawnhook::run_spawn_hooks (src/thread/spawnhook.rs:116:36)", -"0x1042579f4: std::thread::Builder::spawn_unchecked_ (src/thread/mod.rs:507:13)", -"0x1042579f4: std::thread::Builder::spawn_unchecked (src/thread/mod.rs:467:37)", -"0x1042579f4: std::thread::Builder::spawn (src/thread/mod.rs:399:23)", -"0x1042579f4: std::thread::spawn (src/thread/mod.rs:729:20)", -"0x1042579f4: indicatif::progress_bar::Ticker::new (indicatif-0.18.3/src/progress_bar.rs:706:27)", -"0x1042579f4: indicatif::progress_bar::ProgressBar::stop_and_replace_ticker::{{closure}} (indicatif-0.18.3/src/progress_bar.rs:216:49)", -"0x1042579f4: core::option::Option::map (core/src/option.rs:1158:29)", -"0x1042579f4: indicatif::progress_bar::ProgressBar::stop_and_replace_ticker (indicatif-0.18.3/src/progress_bar.rs:216:34)", -"0x1042579f4: indicatif::progress_bar::ProgressBar::enable_steady_tick (indicatif-0.18.3/src/progress_bar.rs:202:14)", -"0x1042579f4: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:158:8)", -"0x1040d7704: ::allocate (???:250:14)", -"0x1040d7704: alloc::raw_vec::RawVecInner::try_allocate_in (ahash-0.8.12/src/random_state.rs:476:47)", -"0x1040d7704: alloc::raw_vec::RawVecInner::with_capacity_in (ahash-0.8.12/src/random_state.rs:422:15)", -"0x1040d7704: alloc::raw_vec::RawVec::with_capacity_in (ahash-0.8.12/src/random_state.rs:190:20)", -"0x1040d7704: alloc::vec::Vec::with_capacity_in (???:929:20)", -"0x1040d7704: alloc::vec::Vec::with_capacity (???:500:9)", -"0x1040d7704: alloc::string::String::with_capacity (???:488:23)", -"0x1040d7704: alloc::fmt::format::format_inner (???:647:26)", -"0x10422684c: alloc::fmt::format::{{closure}} (alloc/src/fmt.rs:654:34)", -"0x10422684c: core::option::Option::map_or_else (core/src/option.rs:1271:21)", -"0x10422684c: alloc::fmt::format (alloc/src/fmt.rs:654:19)", -"0x10422684c: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::generate_css_class_name (core/css_generator/css_generator_base.rs:243:34)", -"0x104114868: std::collections::hash::map::HashMap::insert (collections/hash/map.rs:1204:19)", -"0x104114868: ahash::hash_map::AHashMap::insert (ahash-0.8.12/src/hash_map.rs:186:16)", -"0x104114868: browserslist_data::caniuse::BROWSER_VERSION_ALIASES::{{closure}} (browserslist-data-0.1.4/src/caniuse.rs:65:25)", -"0x104114868: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", -"0x104590fe8: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x104590fe8: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x104590fe8: regex_syntax::hir::Properties::empty (src/hir/mod.rs:2429:20)", -"0x104590fe8: regex_syntax::hir::Hir::empty (src/hir/mod.rs:259:21)", -"0x104590fe8: ::visit_post (src/hir/translate.rs:383:42)", -"0x10458c090: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x10458c090: regex_syntax::hir::literal::Seq::singleton (src/hir/literal.rs:783:30)", -"0x10458c090: regex_syntax::hir::literal::Extractor::extract_repetition (src/hir/literal.rs:484:31)", -"0x10458c090: regex_syntax::hir::literal::Extractor::extract (src/hir/literal.rs:186:41)", -"0x10454535c: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x10454535c: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x10454535c: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:997:33)", -"0x10454535c: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", -"0x10454535c: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", -"0x10454535c: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", -"0x10454535c: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x104214048: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104214048: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104214048: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104214048: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104214048: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104214048: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x104214048: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x104214048: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x104214048: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", -"0x104214048: alloc::str::::to_owned (alloc/src/str.rs:211:62)", -"0x104214048: as alloc::string::SpecToString>::spec_to_string (alloc/src/string.rs:3004:18)", -"0x104214048: ::to_string (alloc/src/string.rs:2809:9)", -"0x104214048: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::build (core/css_builder/css_builder_fs.rs:101:53)", -"0x104214048: grimoire_css_lib::commands::build::build (src/commands/build.rs:37:61)", -"0x104214048: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", -"0x104257c38: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x104257c38: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x104257c38: std::thread::Builder::spawn_unchecked_ (src/thread/mod.rs:578:20)", -"0x104257c38: std::thread::Builder::spawn_unchecked (src/thread/mod.rs:467:37)", -"0x104257c38: std::thread::Builder::spawn (src/thread/mod.rs:399:23)", -"0x104257c38: std::thread::spawn (src/thread/mod.rs:729:20)", -"0x104257c38: indicatif::progress_bar::Ticker::new (indicatif-0.18.3/src/progress_bar.rs:706:27)", -"0x104257c38: indicatif::progress_bar::ProgressBar::stop_and_replace_ticker::{{closure}} (indicatif-0.18.3/src/progress_bar.rs:216:49)", -"0x104257c38: core::option::Option::map (core/src/option.rs:1158:29)", -"0x104257c38: indicatif::progress_bar::ProgressBar::stop_and_replace_ticker (indicatif-0.18.3/src/progress_bar.rs:216:34)", -"0x104257c38: indicatif::progress_bar::ProgressBar::enable_steady_tick (indicatif-0.18.3/src/progress_bar.rs:202:14)", -"0x104257c38: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:158:8)", -"0x1045768dc: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1045768dc: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x1045768dc: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x1045768dc: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x1045768dc: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1045768dc: ::from_elem (src/vec/spec_from_elem.rs:15:21)", -"0x1045768dc: alloc::vec::from_elem (src/vec/mod.rs:3415:5)", -"0x1045768dc: regex_automata::util::captures::Captures::all (src/util/captures.rs:217:50)", -"0x1045768dc: regex_automata::meta::regex::Regex::create_captures (src/meta/regex.rs:1571:9)", -"0x10421f390: regex_automata::meta::regex::Regex::captures_iter (src/meta/regex.rs:656:25)", -"0x10421f390: regex::regex::string::Regex::captures_iter (src/regex/string.rs:424:50)", -"0x10421f390: grimoire_css_lib::core::parser::parser_base::Parser::collect_classes (core/parser/parser_base.rs:124:26)", -"0x1042583a8: std::fs::read_to_string (std/src/fs.rs:355:5)", -"0x1042583a8: grimoire_css_lib::infrastructure::lightning_css_optimizer::LightningCssOptimizer::new (src/infrastructure/lightning_css_optimizer.rs:56:23)", -"0x1042583a8: grimoire_css_lib::start (grimoire-css/src/lib.rs:73:25)", -"0x1042583a8: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:164:11)", -"0x104555d20: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x104555d20: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x104555d20: regex_syntax::hir::Properties::literal (src/hir/mod.rs:2448:20)", -"0x104555d20: regex_syntax::hir::Hir::literal (src/hir/mod.rs:349:21)", -"0x104555d20: regex_automata::meta::reverse_inner::flatten (src/meta/reverse_inner.rs:206:50)", -"0x10442a9d8: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x10442a9d8: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x10442a9d8: lightningcss::properties::background::BackgroundHandler::flush (src/properties/background.rs:937:14)", -"0x104429ef0: ::finalize (src/properties/background.rs:922:10)", -"0x104429ef0: lightningcss::declaration::DeclarationHandler::finalize (lightningcss-1.0.0-alpha.68/src/declaration.rs:702:21)", -"0x104213ff0: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104213ff0: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104213ff0: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104213ff0: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104213ff0: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104213ff0: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x104213ff0: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x104213ff0: as core::clone::Clone>::clone (src/vec/mod.rs:3515:9)", -"0x104213ff0: ::clone (sys/os_str/bytes.rs:92:33)", -"0x104213ff0: ::clone (src/ffi/os_str.rs:700:38)", -"0x104213ff0: ::clone (std/src/path.rs:1758:37)", -"0x104213ff0: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::build (core/css_builder/css_builder_fs.rs:100:40)", -"0x104213ff0: grimoire_css_lib::commands::build::build (src/commands/build.rs:37:61)", -"0x104213ff0: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", -"0x1045802ec: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x1045802ec: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x1045802ec: regex_syntax::ast::visitor::HeapVisitor::visit_class (src/ast/visitor.rs:322:34)", -"0x1045802ec: regex_syntax::ast::visitor::HeapVisitor::induct (src/ast/visitor.rs:268:22)", -"0x1045802ec: regex_syntax::ast::visitor::HeapVisitor::visit (src/ast/visitor.rs:216:35)", -"0x1045802ec: regex_syntax::ast::visitor::visit (src/ast/visitor.rs:119:24)", -"0x1045802ec: regex_syntax::ast::parse::NestLimiter

::check (src/ast/parse.rs:2280:9)", -"0x1042571b8: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x1042571b8: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x1042571b8: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", -"0x1042571b8: indicatif::progress_bar::ProgressBar::with_draw_target (indicatif-0.18.3/src/progress_bar.rs:76:21)", -"0x1042571b8: indicatif::progress_bar::ProgressBar::new_spinner (indicatif-0.18.3/src/progress_bar.rs:151:18)", -"0x1042571b8: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:156:14)", -"0x10415cc18: as core::iter::traits::iterator::Iterator>::next (iter/adapters/flatten.rs:226:20)", -"0x10415cc18: grimoire_css_lib::core::config::config_fs::ConfigFs::load_external_scrolls (core/config/config_fs.rs:616:30)", -"0x10415cc18: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:181:26)", -"0x104555da0: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104555da0: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104555da0: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104555da0: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104555da0: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104555da0: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x104555da0: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:54:33)", -"0x104555da0: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x104555da0: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x104555da0: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x104555da0: regex_automata::meta::reverse_inner::flatten (src/meta/reverse_inner.rs:217:55)", -"0x10415ca84: std::path::Path::join (std/src/path.rs:2742:14)", -"0x10415ca84: grimoire_css_lib::core::config::config_fs::ConfigFs::load_external_scrolls (core/config/config_fs.rs:610:14)", -"0x10415ca84: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:181:26)", -"0x1045390d0: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x1045390d0: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x1045390d0: regex_automata::nfa::thompson::compiler::Utf8Node::set_last_transition (nfa/thompson/compiler.rs:1892:24)", -"0x1045390d0: regex_automata::nfa::thompson::compiler::Utf8Compiler::top_last_freeze (nfa/thompson/compiler.rs:1885:37)", -"0x1045390d0: regex_automata::nfa::thompson::compiler::Utf8Compiler::compile_from (nfa/thompson/compiler.rs:1824:14)", -"0x10457d3e0: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x10457d3e0: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x10457d3e0: regex_syntax::ast::parse::ParserI

::push_group (src/ast/parse.rs:712:29)", -"0x104258018: std::path::Path::join (std/src/path.rs:2742:14)", -"0x104258018: grimoire_css_lib::infrastructure::lightning_css_optimizer::LightningCssOptimizer::new (src/infrastructure/lightning_css_optimizer.rs:41:52)", -"0x104258018: grimoire_css_lib::start (grimoire-css/src/lib.rs:73:25)", -"0x104258018: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:164:11)", -"0x104273d74: ::allocate (core/css_builder/css_builder_base.rs:250:14)", -"0x104273d74: alloc::raw_vec::RawVecInner::try_allocate_in (src/num/uint_macros.rs:476:47)", -"0x104273d74: alloc::raw_vec::RawVecInner::with_capacity_in (src/num/uint_macros.rs:422:15)", -"0x104273d74: alloc::raw_vec::RawVec::with_capacity_in (src/num/uint_macros.rs:190:20)", -"0x104273d74: alloc::vec::Vec::with_capacity_in (src/fmt/rt.rs:929:20)", -"0x104273d74: alloc::vec::Vec::with_capacity (src/fmt/rt.rs:500:9)", -"0x104273d74: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (core/src/option.rs:31:34)", -"0x104273d74: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/meta/regex.rs:34:9)", -"0x104273d74: as core::iter::traits::collect::FromIterator>::from_iter (src/fmt/rt.rs:3633:9)", -"0x104273d74: core::iter::traits::iterator::Iterator::collect (src/util/pool.rs:2027:9)", -"0x104273d74: indicatif::style::segment (src/util/search.rs:42:45)", -"0x104273d74: indicatif::style::ProgressStyle::new (src/util/search.rs:115:30)", -"0x1045224dc: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x1045224dc: lightningcss::stylesheet::StyleSheet::parse_with (lightningcss-1.0.0-alpha.68/src/stylesheet.rs:206:16)", -"0x1045224dc: lightningcss::stylesheet::StyleSheet::parse (lightningcss-1.0.0-alpha.68/src/stylesheet.rs:124:5)", -"0x1045eb470: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1045eb470: hashbrown::raw::alloc::inner::do_alloc (src/raw/alloc.rs:19:21)", -"0x1045eb470: hashbrown::raw::RawTableInner::new_uninitialized (src/raw/mod.rs:1476:38)", -"0x1045eb470: hashbrown::raw::RawTableInner::fallible_with_capacity (src/raw/mod.rs:1515:21)", -"0x1045eb470: hashbrown::raw::RawTableInner::prepare_resize (src/raw/mod.rs:2584:13)", -"0x1045eb470: hashbrown::raw::RawTableInner::resize_inner (src/raw/mod.rs:2782:34)", -"0x1045eb470: hashbrown::raw::RawTableInner::reserve_rehash_inner (src/raw/mod.rs:2670:18)", -"0x1045eb470: hashbrown::raw::RawTable::reserve_rehash (src/raw/mod.rs:991:24)", -"0x104165640: hashbrown::raw::RawTable::reserve (src/raw/mod.rs:940:22)", -"0x104165640: hashbrown::raw::RawTable::find_or_find_insert_slot (src/raw/mod.rs:1146:14)", -"0x104165640: hashbrown::map::HashMap::find_or_find_insert_slot (hashbrown-0.15.4/src/map.rs:1812:20)", -"0x104165640: hashbrown::map::HashMap::insert (hashbrown-0.15.4/src/map.rs:1792:20)", -"0x10422038c: hashbrown::set::HashSet::insert (hashbrown-0.15.4/src/set.rs:1093:18)", -"0x10422038c: std::collections::hash::set::HashSet::insert (collections/hash/set.rs:917:19)", -"0x10422038c: grimoire_css_lib::core::parser::parser_base::Parser::collect_classes (core/parser/parser_base.rs:160:46)", -"0x10458d2cc: ::allocate (alloc/src/alloc.rs:250:14)", -"0x10458d2cc: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x10458d2cc: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x10458d2cc: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x10458d2cc: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x10458d2cc: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x10458d2cc: regex_syntax::hir::literal::Seq::cross_reverse (src/hir/literal.rs:1122:49)", -"0x10458d2cc: regex_syntax::hir::literal::Extractor::cross (src/hir/literal.rs:565:18)", -"0x1045fb2c4: alloc::alloc::exchange_malloc (alloc/src/boxed.rs:351:18)", -"0x1045fb2c4: alloc::boxed::Box::new (src/de/mod.rs:261:16)", -"0x1045fb2c4: alloc::boxed::Box::pin (src/de/mod.rs:322:9)", -"0x1045fb2c4: std::sys::sync::condvar::pthread::Condvar::get::{{closure}} (???:24:28)", -"0x1045fb2c4: std::sys::sync::once_box::OnceBox::initialize (src/ops/range.rs:63:72)", -"0x1042689a4: std::sys::sync::once_box::OnceBox::get_or_init (sys/sync/once_box.rs:51:26)", -"0x1042689a4: std::sys::sync::condvar::pthread::Condvar::get (src/ops/index_range.rs:23:19)", -"0x1042689a4: std::sys::sync::condvar::pthread::Condvar::wait_timeout (src/ops/index_range.rs:84:39)", -"0x1042689a4: std::sync::poison::condvar::Condvar::wait_timeout (core/src/result.rs:391:38)", -"0x1042689a4: std::sync::poison::condvar::Condvar::wait_timeout_while (core/src/result.rs:468:26)", -"0x1042689a4: indicatif::progress_bar::TickerControl::run (core/css_generator/color_functions.rs:744:18)", -"0x1042689a4: indicatif::progress_bar::Ticker::new::{{closure}} (core/css_generator/color_functions.rs:706:57)", -"0x1042689a4: std::sys::backtrace::__rust_begin_short_backtrace (sort/shared/pivot.rs:158:18)", -"0x104275fbc: std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}} (src/thread/mod.rs:559:17)", -"0x104275fbc: as core::ops::function::FnOnce<()>>::call_once (sys/thread_local/mod.rs:272:9)", -"0x104275fbc: std::panicking::catch_unwind::do_call (alloc/src/slice.rs:589:40)", -"0x104275fbc: std::panicking::catch_unwind (alloc/src/slice.rs:552:19)", -"0x104275fbc: std::panic::catch_unwind (src/fmt/mod.rs:359:14)", -"0x104275fbc: std::thread::Builder::spawn_unchecked_::{{closure}} (src/raw_vec/mod.rs:557:30)", -"0x104275fbc: core::ops::function::FnOnce::call_once{{vtable.shim}} (src/raw/mod.rs:253:5)", -"0x104146bd4: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104146bd4: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104146bd4: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104146bd4: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104146bd4: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104146bd4: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x104146bd4: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:31:34)", -"0x104146bd4: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x104146bd4: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x104146bd4: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x104146bd4: as core::iter::traits::collect::FromIterator>>::from_iter::{{closure}} (core/src/result.rs:2054:51)", -"0x104146bd4: core::iter::adapters::try_process (iter/adapters/mod.rs:160:17)", -"0x104146bd4: as core::iter::traits::collect::FromIterator>>::from_iter (core/src/result.rs:2054:9)", -"0x104146bd4: glob::fill_todo::{{closure}} (glob-0.3.3/src/lib.rs:949:18)", -"0x104146bd4: core::result::Result::and_then (core/src/result.rs:1415:22)", -"0x104146bd4: glob::fill_todo (glob-0.3.3/src/lib.rs:938:43)", -"0x104545484: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:1000:35)", -"0x104545484: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", -"0x104545484: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", -"0x104545484: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", -"0x104545484: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x10454b9e0: regex_automata::util::prefilter::suffixes (util/prefilter/mod.rs:695:18)", -"0x10454b9e0: regex_automata::meta::strategy::ReverseSuffix::new (src/meta/strategy.rs:1170:24)", -"0x10454b9e0: regex_automata::meta::strategy::new (src/meta/strategy.rs:170:18)", -"0x10457b054: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x10457b054: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x10457b054: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x1045859fc: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x1045859fc: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x1045859fc: regex_syntax::ast::Flags::add_item (src/ast/mod.rs:1551:20)", -"0x1045859fc: regex_syntax::ast::parse::ParserI

::parse_flags (src/ast/parse.rs:1383:40)", -"0x104585390: regex_syntax::ast::parse::ParserI

::parse_group (src/ast/parse.rs:1257:30)", -"0x104257258: indicatif::style::ProgressStyle::default_spinner (indicatif-0.18.3/src/style.rs:78:19)", -"0x104257258: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:157:18)", -"0x1040b9018: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1040b9018: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x1040b9018: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x1040b9018: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x1040b9018: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1040b9018: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x1040b9018: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:31:34)", -"0x1040b9018: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x1040b9018: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x1040b9018: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x1040b9018: grimoire_css::main (grimoire-css/src/main.rs:28:41)", -"0x104224204: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104224204: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104224204: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104224204: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104224204: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104224204: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x104224204: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x104224204: as core::clone::Clone>::clone (src/vec/mod.rs:3515:9)", -"0x104224204: ::clone (alloc/src/string.rs:2308:32)", -"0x104224204: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::adapt_targets (core/css_generator/css_generator_base.rs:354:52)", -"0x104224204: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::generate_css (core/css_generator/css_generator_base.rs:176:22)", -"0x104160f60: as serde_core::de::MapAccess>::next_value_seed (serde_json-1.0.147/src/de.rs:2031:14)", -"0x104160f60: serde_core::de::MapAccess::next_value (src/de/mod.rs:1918:14)", -"0x104160f60: ::deserialize::__Visitor as serde_core::de::Visitor>::visit_map (core/config/config_fs.rs:93:21)", -"0x104160f60: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_struct (serde_json-1.0.147/src/de.rs:1849:39)", -"0x104160f60: grimoire_css_lib::core::config::config_fs::_::::deserialize (core/config/config_fs.rs:93:21)", -"0x104160f60: as serde_core::de::DeserializeSeed>::deserialize (src/de/mod.rs:825:9)", -"0x104160f60: as serde_core::de::SeqAccess>::next_element_seed (serde_json-1.0.147/src/de.rs:1963:31)", -"0x104160f60: serde_core::de::SeqAccess::next_element (src/de/mod.rs:1773:14)", -"0x104160f60: >::deserialize::VecVisitor as serde_core::de::Visitor>::visit_seq (src/de/impls.rs:1164:50)", -"0x104160f60: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_seq (serde_json-1.0.147/src/de.rs:1750:39)", -"0x104160f60: serde_core::de::impls::>::deserialize (src/de/impls.rs:1175:22)", -"0x104274dc0: alloc::vec::Vec::extend_desugared (src/vec/mod.rs:3741:44)", -"0x104274dc0: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/mod.rs:19:14)", -"0x104274dc0: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (core/src/option.rs:42:9)", -"0x104274dc0: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/meta/regex.rs:34:9)", -"0x104274dc0: as core::iter::traits::collect::FromIterator>::from_iter (src/fmt/rt.rs:3633:9)", -"0x104274dc0: core::iter::traits::iterator::Iterator::collect (src/util/pool.rs:2027:9)", -"0x104274dc0: indicatif::style::ProgressStyle::new (src/util/search.rs:121:18)", -"0x10411ab44: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x10411ab44: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x10411ab44: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", -"0x10411ab44: console::term::Term::with_inner (console-0.16.2/src/term.rs:143:20)", -"0x10411aa78: console::term::Term::stdout (console-0.16.2/src/term.rs:156:9)", -"0x10411aa78: console::utils::STDOUT_COLORS::{{closure}} (console-0.16.2/src/utils.rs:26:58)", -"0x10411aa78: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", -"0x1042684d8: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", -"0x1042684d8: once_cell::sync::Lazy::force::{{closure}} (once_cell-1.21.3/src/lib.rs:1310:28)", -"0x1042684d8: once_cell::sync::OnceCell::get_or_init::{{closure}} (once_cell-1.21.3/src/lib.rs:1120:57)", -"0x1042684d8: once_cell::imp::OnceCell::initialize::{{closure}} (once_cell-1.21.3/src/imp_std.rs:72:23)", -"0x1045ed444: once_cell::imp::OnceCell::initialize (once_cell-1.21.3/src/imp_std.rs:68:9)", -"0x10425bfb4: once_cell::sync::OnceCell::get_or_try_init (once_cell-1.21.3/src/lib.rs:1161:20)", -"0x10425bfb4: once_cell::sync::OnceCell::get_or_init (once_cell-1.21.3/src/lib.rs:1120:24)", -"0x10425bfb4: once_cell::sync::Lazy::force (once_cell-1.21.3/src/lib.rs:1309:23)", -"0x10425bfb4: as core::ops::deref::Deref>::deref (once_cell-1.21.3/src/lib.rs:1376:13)", -"0x10425bfb4: console::utils::colors_enabled (console-0.16.2/src/utils.rs:43:5)", -"0x10425bfb4: as core::fmt::Display>::fmt::{{closure}} (console-0.16.2/src/utils.rs:779:34)", -"0x10425bfb4: core::option::Option::unwrap_or_else (core/src/option.rs:1060:21)", -"0x10425bfb4: as core::fmt::Display>::fmt (console-0.16.2/src/utils.rs:777:22)", -"0x1045d3274: std::io::default_write_fmt (src/io/mod.rs:639:11)", -"0x1045d3274: std::io::Write::write_fmt (???:1954:13)", -"0x1045d3274: <&std::io::stdio::Stdout as std::io::Write>::write_fmt (zmij-0.1.9/src/traits.rs:834:21)", -"0x1045d3274: ::write_fmt (zmij-0.1.9/src/traits.rs:808:18)", -"0x1045d3274: std::io::stdio::print_to (zmij-0.1.9/src/traits.rs:1164:32)", -"0x1045d3274: std::io::stdio::_print (zmij-0.1.9/src/traits.rs:1275:5)", -"0x104256d1c: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:133:5)", -"0x1045b66f4: alloc::alloc::exchange_malloc (alloc/src/boxed.rs:351:18)", -"0x1045b66f4: alloc::boxed::Box::new (src/de/mod.rs:261:16)", -"0x1045b66f4: alloc::sync::Arc::new (src/str/iter.rs:409:25)", -"0x1045b66f4: std::sys::fs::unix::ReadDir::new (io/error/repr_bitpacked.rs:263:23)", -"0x1045b66f4: std::sys::fs::unix::readdir (io/error/repr_bitpacked.rs:1846:12)", -"0x1045b66f4: std::sys::fs::read_dir (src/convert/num.rs:56:5)", -"0x10428e740: ::allocate (alloc/src/alloc.rs:250:14)", -"0x10428e740: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x10428e740: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x10428e740: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x10428e740: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x10428e740: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x10428e740: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x10428e740: as core::clone::Clone>::clone (src/vec/mod.rs:3515:9)", -"0x10428e740: ::clone (alloc/src/string.rs:2308:32)", -"0x10428e740: >::from (src/values/string.rs:62:39)", -"0x10428e740: >::into (src/convert/mod.rs:784:9)", -"0x10428e740: >::from (src/values/string.rs:47:10)", -"0x10450d3d4: >::into (src/convert/mod.rs:784:9)", -"0x10450d3d4: >::from (src/values/string.rs:363:14)", -"0x10450d3d4: parcel_selectors::parser::parse_one_simple_selector (index.crates.io-1949cf8c6b5b557f/parcel_selectors-0.28.2/parser.rs:3002:42)", -"0x10450d3d4: parcel_selectors::parser::parse_compound_selector (index.crates.io-1949cf8c6b5b557f/parcel_selectors-0.28.2/parser.rs:2720:24)", -"0x10450d3d4: parcel_selectors::parser::parse_selector (index.crates.io-1949cf8c6b5b557f/parcel_selectors-0.28.2/parser.rs:2136:17)", -"0x10450b748: parcel_selectors::parser::SelectorList::parse_with_state::{{closure}} (index.crates.io-1949cf8c6b5b557f/parcel_selectors-0.28.2/parser.rs:456:22)", -"0x10450b748: cssparser::parser::Parser::parse_entirely (cssparser-0.33.0/src/parser.rs:689:22)", -"0x10450b748: cssparser::parser::parse_until_before (cssparser-0.33.0/src/parser.rs:1059:35)", -"0x10450b748: cssparser::parser::Parser::parse_until_before (cssparser-0.33.0/src/parser.rs:797:9)", -"0x10450b748: parcel_selectors::parser::SelectorList::parse_with_state (index.crates.io-1949cf8c6b5b557f/parcel_selectors-0.28.2/parser.rs:454:28)", -"0x10452015c: parcel_selectors::parser::SelectorList::parse (index.crates.io-1949cf8c6b5b557f/parcel_selectors-0.28.2/parser.rs:431:5)", -"0x10452015c: as cssparser::rules_and_declarations::QualifiedRuleParser>::parse_prelude (lightningcss-1.0.0-alpha.68/src/parser.rs:960:7)", -"0x10452015c: as cssparser::rules_and_declarations::QualifiedRuleParser>::parse_prelude (lightningcss-1.0.0-alpha.68/src/parser.rs:425:5)", -"0x10452015c: cssparser::rules_and_declarations::parse_qualified_rule::{{closure}} (cssparser-0.33.0/src/rules_and_declarations.rs:502:71)", -"0x10452015c: cssparser::parser::Parser::parse_entirely (cssparser-0.33.0/src/parser.rs:689:22)", -"0x10452015c: cssparser::parser::parse_until_before (cssparser-0.33.0/src/parser.rs:1059:35)", -"0x10452015c: cssparser::parser::Parser::parse_until_before (cssparser-0.33.0/src/parser.rs:797:9)", -"0x10452015c: cssparser::rules_and_declarations::parse_qualified_rule (cssparser-0.33.0/src/rules_and_declarations.rs:502:25)", -"0x10452015c: as core::iter::traits::iterator::Iterator>::next (cssparser-0.33.0/src/rules_and_declarations.rs:396:30)", -"0x10452015c: lightningcss::stylesheet::StyleSheet::parse_with (lightningcss-1.0.0-alpha.68/src/stylesheet.rs:190:45)", -"0x10452015c: lightningcss::stylesheet::StyleSheet::parse (lightningcss-1.0.0-alpha.68/src/stylesheet.rs:124:5)", -"0x104160f18: as serde_core::de::DeserializeSeed>::deserialize (src/de/mod.rs:825:9)", -"0x104160f18: as serde_core::de::MapAccess>::next_value_seed (serde_json-1.0.147/src/de.rs:2031:14)", -"0x104160f18: serde_core::de::MapAccess::next_value (src/de/mod.rs:1918:14)", -"0x104160f18: ::deserialize::__Visitor as serde_core::de::Visitor>::visit_map (core/config/config_fs.rs:93:21)", -"0x104160f18: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_struct (serde_json-1.0.147/src/de.rs:1849:39)", -"0x104160f18: grimoire_css_lib::core::config::config_fs::_::::deserialize (core/config/config_fs.rs:93:21)", -"0x104160f18: as serde_core::de::SeqAccess>::next_element_seed (serde_json-1.0.147/src/de.rs:1963:31)", -"0x104160f18: serde_core::de::SeqAccess::next_element (src/de/mod.rs:1773:14)", -"0x104160f18: >::deserialize::VecVisitor as serde_core::de::Visitor>::visit_seq (src/de/impls.rs:1164:50)", -"0x104160f18: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_seq (serde_json-1.0.147/src/de.rs:1750:39)", -"0x104160f18: serde_core::de::impls::>::deserialize (src/de/impls.rs:1175:22)", -"0x1042572a8: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1042572a8: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x1042572a8: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x1042572a8: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x1042572a8: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1042572a8: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x1042572a8: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x1042572a8: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x1042572a8: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", -"0x1042572a8: alloc::str::::to_owned (alloc/src/str.rs:211:62)", -"0x1042572a8: >::from (alloc/src/string.rs:3056:11)", -"0x1042572a8: <&str as alloc::string::SpecToString>::spec_to_string (alloc/src/string.rs:2977:21)", -"0x1042572a8: ::to_string (alloc/src/string.rs:2809:9)", -"0x1042572a8: indicatif::style::ProgressStyle::tick_strings::{{closure}} (indicatif-0.18.3/src/style.rs:150:48)", -"0x1042572a8: core::iter::adapters::map::map_fold::{{closure}} (iter/adapters/map.rs:88:28)", -"0x1042572a8: as core::iter::traits::iterator::Iterator>::fold (slice/iter/macros.rs:255:27)", -"0x1042572a8: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/map.rs:128:19)", -"0x1042572a8: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", -"0x1042572a8: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3774:26)", -"0x1042572a8: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", -"0x1042572a8: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:62:16)", -"0x1042572a8: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x1042572a8: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x1042572a8: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x1042572a8: indicatif::style::ProgressStyle::tick_strings (indicatif-0.18.3/src/style.rs:150:68)", -"0x1042572a8: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:157:51)", -"0x104177e08: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104177e08: hashbrown::raw::alloc::inner::do_alloc (src/raw/alloc.rs:19:21)", -"0x104177e08: hashbrown::raw::RawTableInner::new_uninitialized (src/raw/mod.rs:1476:38)", -"0x104177e08: hashbrown::raw::RawTableInner::fallible_with_capacity (src/raw/mod.rs:1515:21)", -"0x104177e08: hashbrown::raw::RawTableInner::with_capacity (src/raw/mod.rs:1542:15)", -"0x104177e08: hashbrown::raw::RawTable::with_capacity_in (src/raw/mod.rs:680:20)", -"0x104177e08: hashbrown::raw::RawTable::with_capacity (src/raw/mod.rs:630:9)", -"0x104177e08: hashbrown::map::HashMap::with_capacity_and_hasher (hashbrown-0.15.4/src/map.rs:502:20)", -"0x104177e08: std::collections::hash::map::HashMap::with_capacity_and_hasher (collections/hash/map.rs:344:25)", -"0x104177e08: lightningcss::rules::CssRuleList::minify (src/rules/mod.rs:545:7)", -"0x104522550: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x104522550: lightningcss::stylesheet::StyleSheet::parse_with (lightningcss-1.0.0-alpha.68/src/stylesheet.rs:207:24)", -"0x104522550: lightningcss::stylesheet::StyleSheet::parse (lightningcss-1.0.0-alpha.68/src/stylesheet.rs:124:5)", -"0x104166d40: std::path::Path::join (std/src/path.rs:2742:14)", -"0x104166d40: grimoire_css_lib::core::filesystem::Filesystem::get_or_create_grimoire_path (src/core/filesystem.rs:76:33)", -"0x10415d5a0: grimoire_css_lib::core::config::config_fs::ConfigFs::load_external_variables (core/config/config_fs.rs:713:26)", -"0x10415d5a0: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:184:28)", -"0x10415d5d8: std::path::Path::join (std/src/path.rs:2742:14)", -"0x10415d5d8: grimoire_css_lib::core::config::config_fs::ConfigFs::load_external_variables (core/config/config_fs.rs:713:80)", -"0x10415d5d8: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:184:28)", -"0x104268b68: std::sys::sync::once_box::OnceBox::get_or_init (sys/sync/once_box.rs:51:26)", -"0x104268b68: std::sys::sync::mutex::pthread::Mutex::get (core/src/cmp.rs:22:18)", -"0x104268b68: std::sys::sync::mutex::pthread::Mutex::lock (core/src/cmp.rs:36:23)", -"0x104268b68: std::sync::poison::mutex::Mutex::lock (src/raw_vec/mod.rs:437:24)", -"0x104268b68: indicatif::progress_bar::TickerControl::run (core/css_generator/color_functions.rs:744:53)", -"0x104268b68: indicatif::progress_bar::Ticker::new::{{closure}} (core/css_generator/color_functions.rs:706:57)", -"0x104268b68: std::sys::backtrace::__rust_begin_short_backtrace (sort/shared/pivot.rs:158:18)", -"0x104165d58: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104165d58: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104165d58: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104165d58: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104165d58: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104165d58: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x104165d58: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x104165d58: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x104165d58: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", -"0x104165d58: alloc::str::::to_owned (alloc/src/str.rs:211:62)", -"0x104165d58: >::from (alloc/src/string.rs:3056:11)", -"0x104165d58: ::spec_to_string (alloc/src/string.rs:2977:21)", -"0x104165d58: ::to_string (alloc/src/string.rs:2809:9)", -"0x104165d58: grimoire_css_lib::core::config::config_fs::ConfigFs::expand_glob_patterns (core/config/config_fs.rs:568:49)", -"0x1045d0a48: ::allocate (alloc/src/boxed.rs:250:14)", -"0x1045d0a48: alloc::raw_vec::RawVecInner::try_allocate_in (alloc/src/alloc.rs:476:47)", -"0x1045d0a48: alloc::raw_vec::RawVecInner::with_capacity_in (alloc/src/alloc.rs:422:15)", -"0x1045d0a48: alloc::raw_vec::RawVec::with_capacity_in (alloc/src/alloc.rs:190:20)", -"0x1045d0a48: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1045d0a48: ::to_vec_in::ConvertVec>::to_vec (src/num/uint_macros.rs:445:29)", -"0x1045d0a48: alloc::slice::::to_vec_in (src/num/uint_macros.rs:398:16)", -"0x1045d0a48: alloc::slice::::to_vec (src/num/uint_macros.rs:374:14)", -"0x1045d0a48: std::sys::args::unix::args (???:58:56)", -"0x1045d0a48: std::env::args_os (alloc/src/alloc.rs:865:21)", -"0x1045d0a48: std::env::args (alloc/src/alloc.rs:830:19)", -"0x1040f8cdc: browserslist::resolve (browserslist-rs-0.19.0/src/lib.rs:107:24)", -"0x1040f8cdc: browserslist::queries::dead::dead (src/queries/dead.rs:5:5)", -"0x1040f8cdc: browserslist::queries::query (src/queries/mod.rs:219:28)", -"0x1041145ec: std::collections::hash::map::HashMap::insert (collections/hash/map.rs:1204:19)", -"0x1041145ec: ahash::hash_map::AHashMap::insert (ahash-0.8.12/src/hash_map.rs:186:16)", -"0x1041145ec: browserslist_data::caniuse::BROWSER_VERSION_ALIASES::{{closure}}::{{closure}}::{{closure}} (browserslist-data-0.1.4/src/caniuse.rs:51:41)", -"0x1041145ec: core::iter::adapters::filter_map::filter_map_fold::{{closure}} (iter/adapters/filter_map.rs:40:20)", -"0x1041145ec: as core::iter::traits::iterator::Iterator>::fold (slice/iter/macros.rs:255:27)", -"0x1041145ec: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/filter_map.rs:146:19)", -"0x1041145ec: browserslist_data::caniuse::BROWSER_VERSION_ALIASES::{{closure}}::{{closure}} (browserslist-data-0.1.4/src/caniuse.rs:48:18)", -"0x1041145ec: core::iter::adapters::filter_map::filter_map_fold::{{closure}} (iter/adapters/filter_map.rs:39:28)", -"0x1041145ec: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", -"0x1041145ec: as core::iter::traits::collect::Extend<(K,V)>>::extend (hashbrown-0.15.4/src/map.rs:4496:14)", -"0x1041145ec: as core::iter::traits::collect::Extend<(K,V)>>::extend (collections/hash/map.rs:2796:19)", -"0x1041145ec: as core::iter::traits::collect::FromIterator<(K,V)>>::from_iter (ahash-0.8.12/src/hash_map.rs:355:15)", -"0x1041145ec: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x1041145ec: browserslist_data::caniuse::BROWSER_VERSION_ALIASES::{{closure}} (browserslist-data-0.1.4/src/caniuse.rs:62:10)", -"0x1041145ec: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", -"0x104146c38: alloc::vec::Vec::extend_desugared (src/vec/mod.rs:3741:44)", -"0x104146c38: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:19:14)", -"0x104146c38: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:42:9)", -"0x104146c38: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x104146c38: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x104146c38: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x104146c38: as core::iter::traits::collect::FromIterator>>::from_iter::{{closure}} (core/src/result.rs:2054:51)", -"0x104146c38: core::iter::adapters::try_process (iter/adapters/mod.rs:160:17)", -"0x104146c38: as core::iter::traits::collect::FromIterator>>::from_iter (core/src/result.rs:2054:9)", -"0x104146c38: glob::fill_todo::{{closure}} (glob-0.3.3/src/lib.rs:949:18)", -"0x104146c38: core::result::Result::and_then (core/src/result.rs:1415:22)", -"0x104146c38: glob::fill_todo (glob-0.3.3/src/lib.rs:938:43)", -"0x104257e60: console::term::Term::buffered_stdout (console-0.16.2/src/term.rs:177:9)", -"0x104257e60: indicatif::draw_target::ProgressDrawTarget::stdout_with_hz (indicatif-0.18.3/src/draw_target.rs:49:20)", -"0x104257e60: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:159:24)", -"0x10415f37c: grimoire_css_lib::core::filesystem::Filesystem::get_config_path (src/core/filesystem.rs:48:28)", -"0x1045afe64: ::allocate (alloc/src/boxed.rs:250:14)", -"0x1045afe64: alloc::raw_vec::RawVecInner::try_allocate_in (alloc/src/alloc.rs:476:47)", -"0x1045afe64: alloc::raw_vec::RawVecInner::with_capacity_in (alloc/src/alloc.rs:422:15)", -"0x1045afe64: alloc::raw_vec::RawVec::with_capacity_in (alloc/src/alloc.rs:190:20)", -"0x1045afe64: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1045afe64: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x1045afe64: std::sys::pal::unix::os::getcwd (core/src/result.rs:160:19)", -"0x1045afe64: std::env::current_dir (alloc/src/alloc.rs:54:5)", -"0x104257fd4: grimoire_css_lib::start (grimoire-css/src/lib.rs:72:23)", -"0x104257fd4: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:164:11)", -"0x1040f8f64: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x1040f8f64: browserslist::queries::firefox_esr::firefox_esr (src/queries/firefox_esr.rs:4:8)", -"0x1040f8f64: browserslist::queries::query (src/queries/mod.rs:212:34)", -"0x1045919dc: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x1045919dc: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x1045919dc: ::visit_post (src/hir/translate.rs:459:27)", -"0x104224e00: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", -"0x104224e00: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", -"0x104224e00: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", -"0x104224e00: alloc::vec::Vec::append_elements (src/vec/mod.rs:2732:14)", -"0x104224e00: as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter>>::spec_extend (src/vec/spec_extend.rs:61:23)", -"0x104224e00: alloc::vec::Vec::extend_from_slice (src/vec/mod.rs:3262:14)", -"0x104224e00: alloc::string::String::push_str (alloc/src/string.rs:1113:18)", -"0x104224e00: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::adapt_targets (core/css_generator/css_generator_base.rs:363:16)", -"0x104224e00: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::generate_css (core/css_generator/css_generator_base.rs:176:22)", -"0x10421fb3c: ::allocate (alloc/src/alloc.rs:250:14)", -"0x10421fb3c: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x10421fb3c: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x10421fb3c: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x10421fb3c: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x10421fb3c: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x10421fb3c: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x10421fb3c: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x10421fb3c: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", -"0x10421fb3c: alloc::str::::to_owned (alloc/src/str.rs:211:62)", -"0x10421fb3c: >::from (alloc/src/string.rs:3056:11)", -"0x10421fb3c: ::spec_to_string (alloc/src/string.rs:2977:21)", -"0x10421fb3c: ::to_string (alloc/src/string.rs:2809:9)", -"0x10421fb3c: grimoire_css_lib::core::parser::parser_base::Parser::collect_classes (core/parser/parser_base.rs:153:53)", -"0x1040f19ec: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x1040f19ec: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x1040f19ec: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x1042203ac: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x1042203ac: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x1042203ac: grimoire_css_lib::core::parser::parser_base::Parser::collect_classes (core/parser/parser_base.rs:161:41)", -"0x1041747cc: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1041747cc: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x1041747cc: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x1041747cc: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x1041747cc: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1041747cc: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x1041747cc: alloc::string::String::with_capacity (alloc/src/string.rs:488:23)", -"0x1041747cc: lightningcss::stylesheet::StyleSheet::to_css (lightningcss-1.0.0-alpha.68/src/stylesheet.rs:274:20)", -"0x1041747cc: ::optimize (src/infrastructure/lightning_css_optimizer.rs:98:14)", -"0x1040f84c8: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", -"0x1040f84c8: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", -"0x1040f84c8: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", -"0x1040f84c8: alloc::vec::Vec::append_elements (src/vec/mod.rs:2732:14)", -"0x1040f84c8: as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter>>::spec_extend (src/vec/spec_extend.rs:61:23)", -"0x1040f84c8: alloc::vec::Vec::extend_from_slice (src/vec/mod.rs:3262:14)", -"0x1040f84c8: alloc::string::String::push_str (alloc/src/string.rs:1113:18)", -"0x1040f84c8: browserslist::resolve::{{closure}} (browserslist-rs-0.19.0/src/lib.rs:103:15)", -"0x1040f84c8: as core::iter::traits::iterator::Iterator>::fold::enumerate::{{closure}} (iter/adapters/enumerate.rs:140:27)", -"0x1040f84c8: core::ops::try_trait::NeverShortCircuit::wrap_mut_2::{{closure}} (src/ops/try_trait.rs:401:39)", -"0x1040f84c8: core::array::iter::iter_inner::PolymorphicIter<[core::mem::maybe_uninit::MaybeUninit]>::try_fold::{{closure}} (array/iter/iter_inner.rs:220:13)", -"0x1040f84c8: ::try_fold (src/ops/index_range.rs:169:21)", -"0x1040f84c8: core::array::iter::iter_inner::PolymorphicIter<[core::mem::maybe_uninit::MaybeUninit]>::try_fold (array/iter/iter_inner.rs:215:20)", -"0x1040f84c8: core::array::iter::iter_inner::PolymorphicIter<[core::mem::maybe_uninit::MaybeUninit]>::fold (array/iter/iter_inner.rs:202:14)", -"0x1040f84c8: as core::iter::traits::iterator::Iterator>::fold (src/array/iter.rs:253:27)", -"0x1040f84c8: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/enumerate.rs:146:19)", -"0x1040f84c8: browserslist::resolve (browserslist-rs-0.19.0/src/lib.rs:99:10)", -"0x1040f84c8: browserslist::queries::defaults::defaults (src/queries/defaults.rs:5:5)", -"0x1040f84c8: browserslist::queries::query (src/queries/mod.rs:218:32)", -"0x104256f60: console::term::Term::buffered_stderr (console-0.16.2/src/term.rs:187:9)", -"0x104256f60: indicatif::draw_target::ProgressDrawTarget::stderr (indicatif-0.18.3/src/draw_target.rs:42:20)", -"0x104256f60: indicatif::progress_bar::ProgressBar::new_spinner (indicatif-0.18.3/src/progress_bar.rs:151:47)", -"0x104256f60: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:156:14)", -"0x10421bb98: std::fs::read_to_string (std/src/fs.rs:355:5)", -"0x10421bb98: grimoire_css_lib::core::parser::parser_fs::ParserFs::collect_spells_from_path (core/parser/parser_fs.rs:230:32)", -"0x1040f8618: browserslist::resolve (browserslist-rs-0.19.0/src/lib.rs:107:24)", -"0x1040f8618: browserslist::queries::defaults::defaults (src/queries/defaults.rs:5:5)", -"0x1040f8618: browserslist::queries::query (src/queries/mod.rs:218:32)", -"0x1042140a0: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x1042140a0: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x1042140a0: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", -"0x1042140a0: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::build (core/css_builder/css_builder_fs.rs:99:34)", -"0x1042140a0: grimoire_css_lib::commands::build::build (src/commands/build.rs:37:61)", -"0x1042140a0: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", -"0x1042759b8: std::sys::sync::once_box::OnceBox::get_or_init (sys/sync/once_box.rs:51:26)", -"0x1042759b8: std::sys::sync::mutex::pthread::Mutex::get (core/src/cmp.rs:22:18)", -"0x1042759b8: std::sys::sync::mutex::pthread::Mutex::lock (core/src/cmp.rs:36:23)", -"0x1042759b8: std::sync::poison::mutex::Mutex::lock (src/raw_vec/mod.rs:437:24)", -"0x1042759b8: indicatif::progress_bar::ProgressBar::state (core/css_generator/color_functions.rs:643:20)", -"0x1042759b8: indicatif::progress_bar::ProgressBar::set_style (core/css_generator/color_functions.rs:160:30)", -"0x104257230: indicatif::progress_bar::ProgressBar::new_spinner (indicatif-0.18.3/src/progress_bar.rs:152:12)", -"0x104257230: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:156:14)", -"0x10410704c: ::allocate (alloc/src/alloc.rs:250:14)", -"0x10410704c: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x10410704c: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x10410704c: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x10410704c: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x10410704c: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x10410704c: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:31:34)", -"0x10410704c: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x10410704c: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x10410704c: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x10410704c: browserslist::queries::browser_unbounded_range::browser_unbounded_range (src/queries/browser_unbounded_range.rs:32:10)", -"0x104257610: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x104257610: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x104257610: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", -"0x104257610: indicatif::progress_bar::Ticker::new (indicatif-0.18.3/src/progress_bar.rs:700:24)", -"0x104257610: indicatif::progress_bar::ProgressBar::stop_and_replace_ticker::{{closure}} (indicatif-0.18.3/src/progress_bar.rs:216:49)", -"0x104257610: core::option::Option::map (core/src/option.rs:1158:29)", -"0x104257610: indicatif::progress_bar::ProgressBar::stop_and_replace_ticker (indicatif-0.18.3/src/progress_bar.rs:216:34)", -"0x104257610: indicatif::progress_bar::ProgressBar::enable_steady_tick (indicatif-0.18.3/src/progress_bar.rs:202:14)", -"0x104257610: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:158:8)", -"0x104545fbc: ::visit_pre (src/hir/translate.rs:351:22)", -"0x104545fbc: regex_syntax::ast::visitor::HeapVisitor::visit (src/ast/visitor.rs:215:21)", -"0x104545fbc: regex_syntax::ast::visitor::visit (src/ast/visitor.rs:119:24)", -"0x104545fbc: regex_syntax::hir::translate::Translator::translate (src/hir/translate.rs:174:9)", -"0x104545fbc: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3494:18)", -"0x104545fbc: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x1045995d8: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1045995d8: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x1045995d8: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x1045995d8: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x1045995d8: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1045995d8: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x1045995d8: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:54:33)", -"0x1045995d8: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x1045995d8: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x1045995d8: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x1045995d8: regex_syntax::unicode::hir_class (regex-syntax-0.8.8/src/unicode.rs:456:10)", -"0x1045995d8: regex_syntax::unicode::perl_word::imp (regex-syntax-0.8.8/src/unicode.rs:397:12)", -"0x1045995d8: regex_syntax::unicode::perl_word (regex-syntax-0.8.8/src/unicode.rs:400:5)", -"0x1045995d8: regex_syntax::hir::translate::TranslatorI::hir_perl_unicode_class (src/hir/translate.rs:1091:21)", -"0x104256fc0: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x104256fc0: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x104256fc0: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", -"0x104256fc0: indicatif::progress_bar::ProgressBar::with_draw_target (indicatif-0.18.3/src/progress_bar.rs:72:19)", -"0x104256fc0: indicatif::progress_bar::ProgressBar::new_spinner (indicatif-0.18.3/src/progress_bar.rs:151:18)", -"0x104256fc0: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:156:14)", -"0x104221140: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104221140: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104221140: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104221140: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104221140: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104221140: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x104221140: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x104221140: as core::clone::Clone>::clone (src/vec/mod.rs:3515:9)", -"0x104221140: ::clone (src/util/captures.rs:172:5)", -"0x104221140: ::next (src/meta/regex.rs:2175:23)", -"0x104221140: ::next (src/regex/string.rs:2248:17)", -"0x10428e76c: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x10428e76c: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x10428e76c: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", -"0x10428e76c: >::from (src/values/string.rs:94:25)", -"0x10428e76c: >::from (src/values/string.rs:62:7)", -"0x10428e76c: >::into (src/convert/mod.rs:784:9)", -"0x10428e76c: >::from (src/values/string.rs:47:10)", -"0x1045e50f4: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x1045e50f4: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x1045e50f4: ahash::random_state::get_src::{{closure}} (ahash-0.8.12/src/random_state.rs:192:44)", -"0x1045e50f4: once_cell::race::once_box::OnceBox::get_or_init::{{closure}} (once_cell-1.21.3/src/race.rs:437:62)", -"0x1045e50f4: once_cell::race::once_box::OnceBox::init (once_cell-1.21.3/src/race.rs:463:23)", -"0x10416af74: as serde_core::de::DeserializeSeed>::deserialize (src/de/mod.rs:825:9)", -"0x10416af74: as serde_core::de::SeqAccess>::next_element_seed (serde_json-1.0.147/src/de.rs:1963:31)", -"0x10416af74: serde_core::de::SeqAccess::next_element (src/de/mod.rs:1773:14)", -"0x10416af74: >::deserialize::VecVisitor as serde_core::de::Visitor>::visit_seq (src/de/impls.rs:1164:50)", -"0x10416af74: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_seq (serde_json-1.0.147/src/de.rs:1750:39)", -"0x10416af74: serde_core::de::impls::>::deserialize (src/de/impls.rs:1175:22)", -"0x104161030: as serde_core::de::DeserializeSeed>::deserialize (src/de/mod.rs:825:9)", -"0x104161030: as serde_core::de::MapAccess>::next_value_seed (serde_json-1.0.147/src/de.rs:2031:14)", -"0x104161030: serde_core::de::MapAccess::next_value (src/de/mod.rs:1918:14)", -"0x104161030: ::deserialize::__Visitor as serde_core::de::Visitor>::visit_map (core/config/config_fs.rs:93:21)", -"0x104161030: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_struct (serde_json-1.0.147/src/de.rs:1849:39)", -"0x104161030: grimoire_css_lib::core::config::config_fs::_::::deserialize (core/config/config_fs.rs:93:21)", -"0x104161030: as serde_core::de::SeqAccess>::next_element_seed (serde_json-1.0.147/src/de.rs:1963:31)", -"0x104161030: serde_core::de::SeqAccess::next_element (src/de/mod.rs:1773:14)", -"0x104161030: >::deserialize::VecVisitor as serde_core::de::Visitor>::visit_seq (src/de/impls.rs:1164:50)", -"0x104161030: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_seq (serde_json-1.0.147/src/de.rs:1750:39)", -"0x104161030: serde_core::de::impls::>::deserialize (src/de/impls.rs:1175:22)", -"0x1041073c8: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1041073c8: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x1041073c8: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x1041073c8: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x1041073c8: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1041073c8: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x1041073c8: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x1041073c8: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x1041073c8: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", -"0x1041073c8: alloc::str::::to_owned (alloc/src/str.rs:211:62)", -"0x1041073c8: browserslist::queries::browser_accurate::browser_accurate (src/queries/browser_accurate.rs:27:44)", -"0x1040f9ec0: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", -"0x1040f9ec0: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", -"0x1040f9ec0: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", -"0x1040f9ec0: alloc::vec::Vec::append_elements (src/vec/mod.rs:2732:14)", -"0x1040f9ec0: alloc::vec::Vec::append (src/vec/mod.rs:2721:18)", -"0x1040f9ec0: browserslist::resolve::{{closure}} (browserslist-rs-0.19.0/src/lib.rs:122:26)", -"0x1040f9ec0: as core::iter::traits::iterator::Iterator>::try_fold::enumerate::{{closure}} (iter/adapters/enumerate.rs:119:27)", -"0x1040f9ec0: as core::iter::traits::iterator::Iterator>::try_fold (src/vec/into_iter.rs:351:25)", -"0x1040f9ec0: as core::iter::traits::iterator::Iterator>::try_fold (iter/adapters/enumerate.rs:125:19)", -"0x1040f9ec0: browserslist::resolve (browserslist-rs-0.19.0/src/lib.rs:111:10)", -"0x1040f9ec0: browserslist::queries::dead::dead (src/queries/dead.rs:5:5)", -"0x1040f9ec0: browserslist::queries::query (src/queries/mod.rs:219:28)", -"0x104159fd8: as serde_core::de::MapAccess>::next_value_seed (serde_json-1.0.147/src/de.rs:2031:14)", -"0x104159fd8: serde_core::de::MapAccess::next_value (src/de/mod.rs:1918:14)", -"0x104159fd8: ::deserialize::__Visitor as serde_core::de::Visitor>::visit_map (core/config/config_fs.rs:69:21)", -"0x104159fd8: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_struct (serde_json-1.0.147/src/de.rs:1849:39)", -"0x104159fd8: grimoire_css_lib::core::config::config_fs::_::::deserialize (core/config/config_fs.rs:69:21)", -"0x104159fd8: serde_json::de::from_trait (serde_json-1.0.147/src/de.rs:2501:22)", -"0x104159fd8: serde_json::de::from_str (serde_json-1.0.147/src/de.rs:2701:5)", -"0x104159fd8: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:174:41)", -"0x104257978: std::sys::sync::once_box::OnceBox::get_or_init (sys/sync/once_box.rs:51:26)", -"0x104257978: std::sys::sync::mutex::pthread::Mutex::get (sync/mutex/pthread.rs:22:18)", -"0x104257978: std::sys::sync::mutex::pthread::Mutex::lock (sync/mutex/pthread.rs:36:23)", -"0x104257978: std::sync::poison::mutex::Mutex::lock (sync/poison/mutex.rs:437:24)", -"0x104257978: indicatif::progress_bar::ProgressBar::stop_and_replace_ticker (indicatif-0.18.3/src/progress_bar.rs:211:44)", -"0x104257978: indicatif::progress_bar::ProgressBar::enable_steady_tick (indicatif-0.18.3/src/progress_bar.rs:202:14)", -"0x104257978: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:158:8)", -"0x104173130: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104173130: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104173130: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104173130: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104173130: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104173130: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x104173130: grimoire_css_lib::core::spell::Spell::generate_spells_from_classes (src/core/spell.rs:417:26)", -"0x1045459b4: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x1045459b4: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x1045459b4: regex_syntax::ast::Ast::dot (src/ast/mod.rs:516:18)", -"0x1045459b4: regex_syntax::ast::parse::Primitive::into_ast (src/ast/parse.rs:58:37)", -"0x1045459b4: regex_syntax::ast::parse::ParserI

::parse_with_comments (src/ast/parse.rs:1020:63)", -"0x1045459b4: regex_syntax::ast::parse::ParserI

::parse (src/ast/parse.rs:977:14)", -"0x1045459b4: regex_syntax::ast::parse::Parser::parse (src/ast/parse.rs:363:37)", -"0x1045459b4: regex_automata::meta::regex::Builder::build_many (src/meta/regex.rs:3484:18)", -"0x1045459b4: regex_automata::meta::regex::Builder::build (src/meta/regex.rs:3417:14)", -"0x104228234: regex_automata::meta::regex::Regex::captures_iter (src/meta/regex.rs:656:25)", -"0x104228234: regex::regex::string::Regex::captures_iter (src/regex/string.rs:424:50)", -"0x104228234: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::handle_generic_css (core/css_generator/css_generator_base.rs:514:14)", -"0x10412bcf8: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x10412bcf8: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x10412bcf8: alloc::rc::Rc::new (alloc/src/rc.rs:412:27)", -"0x10412bcf8: >::from (cssparser-0.33.0/src/cow_rc_str.rs:57:27)", -"0x10412bcf8: >::into (src/convert/mod.rs:784:9)", -"0x10412bcf8: cssparser::tokenizer::consume_name (cssparser-0.33.0/src/tokenizer.rs:989:57)", -"0x10412b274: cssparser::tokenizer::consume_ident_like (cssparser-0.33.0/src/tokenizer.rs:907:17)", -"0x10412a468: cssparser::tokenizer::next_token (cssparser-0.33.0/src/tokenizer.rs:0:0)", -"0x104129ab8: cssparser::tokenizer::Tokenizer::next (cssparser-0.33.0/src/tokenizer.rs:267:9)", -"0x104129ab8: cssparser::parser::Parser::next_including_whitespace_and_comments (cssparser-0.33.0/src/parser.rs:664:18)", -"0x10450d380: cssparser::parser::Parser::next_including_whitespace (cssparser-0.33.0/src/parser.rs:617:24)", -"0x10450d380: parcel_selectors::parser::parse_one_simple_selector (index.crates.io-1949cf8c6b5b557f/parcel_selectors-0.28.2/parser.rs:2995:32)", -"0x10450d380: parcel_selectors::parser::parse_compound_selector (index.crates.io-1949cf8c6b5b557f/parcel_selectors-0.28.2/parser.rs:2720:24)", -"0x10450d380: parcel_selectors::parser::parse_selector (index.crates.io-1949cf8c6b5b557f/parcel_selectors-0.28.2/parser.rs:2136:17)", -"0x1045170ec: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1045170ec: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x1045170ec: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x1045170ec: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x1045170ec: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1045170ec: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x1045170ec: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:31:34)", -"0x1045170ec: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x1045170ec: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x1045170ec: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x1045137d4: parcel_selectors::builder::SelectorBuilder::build_with_specificity_and_flags (index.crates.io-1949cf8c6b5b557f/parcel_selectors-0.28.2/builder.rs:145:17)", -"0x1045137d4: parcel_selectors::builder::SelectorBuilder::build (index.crates.io-1949cf8c6b5b557f/parcel_selectors-0.28.2/builder.rs:119:10)", -"0x1045137d4: parcel_selectors::parser::parse_selector (index.crates.io-1949cf8c6b5b557f/parcel_selectors-0.28.2/parser.rs:2237:36)", -"0x104259dcc: alloc::fmt::format::{{closure}} (alloc/src/fmt.rs:654:34)", -"0x104259dcc: core::option::Option::map_or_else (core/src/option.rs:1271:21)", -"0x104259dcc: alloc::fmt::format (alloc/src/fmt.rs:654:19)", -"0x104259dcc: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:180:27)", -"0x1041425bc: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1041425bc: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x1041425bc: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x1041425bc: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x1041425bc: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1041425bc: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x1041425bc: alloc::slice:: for alloc::vec::Vec>::with_capacity (alloc/src/slice.rs:863:9)", -"0x1041425bc: core::slice::sort::stable::driftsort_main (sort/stable/mod.rs:127:20)", -"0x104147714: core::slice::sort::stable::sort (sort/stable/mod.rs:83:13)", -"0x104147714: alloc::slice::stable_sort (alloc/src/slice.rs:856:5)", -"0x104147714: alloc::slice::::sort_by (alloc/src/slice.rs:194:9)", -"0x104147714: glob::fill_todo (glob-0.3.3/src/lib.rs:957:30)", -"0x1045e74ac: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x1045e74ac: alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle (src/raw_vec/mod.rs:557:35)", -"0x1041476c8: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", -"0x1041476c8: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", -"0x1041476c8: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", -"0x1041476c8: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3770:18)", -"0x1041476c8: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", -"0x1041476c8: as core::iter::traits::collect::Extend>::extend (src/vec/mod.rs:3702:9)", -"0x1041476c8: glob::fill_todo (glob-0.3.3/src/lib.rs:958:26)", -"0x104542c0c: regex_automata::hybrid::dfa::DFA::next_state (src/hybrid/dfa.rs:1228:32)", -"0x104542c0c: regex_automata::hybrid::search::find_fwd_imp (src/hybrid/search.rs:228:22)", -"0x104542c0c: regex_automata::hybrid::search::find_fwd (src/hybrid/search.rs:38:13)", -"0x1045b8c48: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x1045b8c48: alloc::raw_vec::RawVecInner::grow_one (alloc/src/alloc.rs:571:32)", -"0x1045b8c48: alloc::raw_vec::RawVec::grow_one (alloc/src/alloc.rs:340:20)", -"0x10416af9c: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x10416af9c: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x10416af9c: >::deserialize::VecVisitor as serde_core::de::Visitor>::visit_seq (src/de/impls.rs:1165:28)", -"0x10416af9c: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_seq (serde_json-1.0.147/src/de.rs:1750:39)", -"0x10416af9c: serde_core::de::impls::>::deserialize (src/de/impls.rs:1175:22)", -"0x104257434: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104257434: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104257434: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104257434: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104257434: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104257434: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x104257434: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x104257434: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x104257434: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", -"0x104257434: alloc::str::::to_owned (alloc/src/str.rs:211:62)", -"0x104257434: >::from (alloc/src/string.rs:3056:11)", -"0x104257434: <&str as alloc::string::SpecToString>::spec_to_string (alloc/src/string.rs:2977:21)", -"0x104257434: ::to_string (alloc/src/string.rs:2809:9)", -"0x104257434: indicatif::style::ProgressStyle::tick_strings::{{closure}} (indicatif-0.18.3/src/style.rs:150:48)", -"0x104257434: core::iter::adapters::map::map_fold::{{closure}} (iter/adapters/map.rs:88:28)", -"0x104257434: as core::iter::traits::iterator::Iterator>::fold (slice/iter/macros.rs:255:27)", -"0x104257434: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/map.rs:128:19)", -"0x104257434: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", -"0x104257434: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3774:26)", -"0x104257434: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", -"0x104257434: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:62:16)", -"0x104257434: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x104257434: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x104257434: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x104257434: indicatif::style::ProgressStyle::tick_strings (indicatif-0.18.3/src/style.rs:150:68)", -"0x104257434: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:157:51)", -"0x10415a968: std::path::Path::join (std/src/path.rs:2742:14)", -"0x10415a968: grimoire_css_lib::core::config::config_fs::ConfigFs::find_custom_animations (core/config/config_fs.rs:516:67)", -"0x10415a968: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:178:36)", -"0x10411ad2c: ::allocate (alloc/src/alloc.rs:250:14)", -"0x10411ad2c: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x10411ad2c: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x10411ad2c: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x10411ad2c: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x10411ad2c: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x10411ad2c: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x10411ad2c: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x10411ad2c: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", -"0x10411ad2c: alloc::str::::to_owned (alloc/src/str.rs:211:62)", -"0x10411ad2c: >::from (alloc/src/string.rs:3056:11)", -"0x10411ad2c: >::into (src/convert/mod.rs:784:9)", -"0x10411ad2c: console::utils::default_colors_enabled::{{closure}} (console-0.16.2/src/utils.rs:18:63)", -"0x10411ad2c: core::result::Result::unwrap_or_else (core/src/result.rs:1525:23)", -"0x10411ad2c: console::utils::default_colors_enabled (console-0.16.2/src/utils.rs:18:40)", -"0x10411aa84: console::utils::STDOUT_COLORS::{{closure}} (console-0.16.2/src/utils.rs:26:34)", -"0x10411aa84: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", -"0x104568e8c: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", -"0x104568e8c: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", -"0x104568e8c: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", -"0x104568e8c: alloc::vec::Vec::extend_with (src/vec/mod.rs:3355:14)", -"0x104568e8c: alloc::vec::Vec::resize (src/vec/mod.rs:3234:18)", -"0x104568e8c: regex_automata::dfa::onepass::Cache::reset (src/dfa/onepass.rs:2563:29)", -"0x104568e8c: regex_automata::dfa::onepass::Cache::new (src/dfa/onepass.rs:2517:15)", -"0x104568e8c: regex_automata::dfa::onepass::DFA::create_cache (src/dfa/onepass.rs:1374:9)", -"0x104568e8c: regex_automata::meta::wrappers::OnePassCache::new::{{closure}} (src/meta/wrappers.rs:481:57)", -"0x104568e8c: core::option::Option::map (core/src/option.rs:1158:29)", -"0x104568e8c: regex_automata::meta::wrappers::OnePassCache::new (src/meta/wrappers.rs:481:45)", -"0x104568e8c: regex_automata::meta::wrappers::OnePass::create_cache (src/meta/wrappers.rs:335:9)", -"0x104568e8c: ::create_cache (src/meta/strategy.rs:678:35)", -"0x104568e8c: ::create_cache (src/meta/strategy.rs:1304:19)", -"0x104165d98: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x104165d98: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x104165d98: grimoire_css_lib::core::config::config_fs::ConfigFs::expand_glob_patterns (core/config/config_fs.rs:568:35)", -"0x10444c2ac: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x10444c2ac: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x10444c2ac: lightningcss::properties::size::SizeHandler::flush (src/properties/size.rs:517:16)", -"0x10415d7d8: ::allocate (alloc/src/alloc.rs:250:14)", -"0x10415d7d8: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x10415d7d8: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x10415d7d8: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x10415d7d8: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x10415d7d8: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x10415d7d8: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x10415d7d8: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x10415d7d8: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", -"0x10415d7d8: alloc::str::::to_owned (alloc/src/str.rs:211:62)", -"0x10415d7d8: as alloc::string::SpecToString>::spec_to_string (alloc/src/string.rs:3004:18)", -"0x10415d7d8: ::to_string (alloc/src/string.rs:2809:9)", -"0x10415d7d8: grimoire_css_lib::core::config::config_fs::ConfigFs::load_external_variables (core/config/config_fs.rs:725:14)", -"0x10415d7d8: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:184:28)", -"0x10415c604: std::path::Path::join (std/src/path.rs:2742:14)", -"0x10415c604: grimoire_css_lib::core::config::config_fs::ConfigFs::load_external_scrolls (core/config/config_fs.rs:601:80)", -"0x10415c604: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:181:26)", -"0x10450c520: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x10450c520: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x10450c520: as cssparser::rules_and_declarations::QualifiedRuleParser>::parse_block (lightningcss-1.0.0-alpha.68/src/parser.rs:977:18)", -"0x104257320: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104257320: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104257320: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104257320: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104257320: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104257320: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x104257320: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x104257320: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x104257320: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", -"0x104257320: alloc::str::::to_owned (alloc/src/str.rs:211:62)", -"0x104257320: >::from (alloc/src/string.rs:3056:11)", -"0x104257320: <&str as alloc::string::SpecToString>::spec_to_string (alloc/src/string.rs:2977:21)", -"0x104257320: ::to_string (alloc/src/string.rs:2809:9)", -"0x104257320: indicatif::style::ProgressStyle::tick_strings::{{closure}} (indicatif-0.18.3/src/style.rs:150:48)", -"0x104257320: core::iter::adapters::map::map_fold::{{closure}} (iter/adapters/map.rs:88:28)", -"0x104257320: as core::iter::traits::iterator::Iterator>::fold (slice/iter/macros.rs:255:27)", -"0x104257320: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/map.rs:128:19)", -"0x104257320: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", -"0x104257320: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3774:26)", -"0x104257320: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", -"0x104257320: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:62:16)", -"0x104257320: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x104257320: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x104257320: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x104257320: indicatif::style::ProgressStyle::tick_strings (indicatif-0.18.3/src/style.rs:150:68)", -"0x104257320: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:157:51)", -"0x104213c9c: std::path::Path::join (std/src/path.rs:2742:14)", -"0x104213c9c: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::build::{{closure}} (core/css_builder/css_builder_fs.rs:86:43)", -"0x104213c9c: core::option::Option::map (core/src/option.rs:1158:29)", -"0x104213c9c: grimoire_css_lib::core::css_builder::css_builder_fs::CssBuilderFs::build (core/css_builder/css_builder_fs.rs:86:18)", -"0x104213c9c: grimoire_css_lib::commands::build::build (src/commands/build.rs:37:61)", -"0x104213c9c: grimoire_css_lib::commands::handler::process_mode_and_handle (src/commands/handler.rs:35:13)", -"0x1041132e4: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1041132e4: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x1041132e4: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x1041132e4: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x1041132e4: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x1041132e4: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x1041132e4: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x1041132e4: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x1041132e4: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", -"0x1041132e4: alloc::str::::to_owned (alloc/src/str.rs:211:62)", -"0x1041132e4: alloc::str::::to_ascii_lowercase (alloc/src/str.rs:594:26)", -"0x1041132e4: browserslist_data::caniuse::get_browser_stat (browserslist-data-0.1.4/src/caniuse.rs:105:24)", -"0x104106f80: browserslist::queries::browser_unbounded_range::browser_unbounded_range (src/queries/browser_unbounded_range.rs:11:24)", -"0x1045e48bc: ::allocate (alloc/src/alloc.rs:250:14)", -"0x1045e48bc: hashbrown::raw::alloc::inner::do_alloc (src/raw/alloc.rs:19:21)", -"0x1045e48bc: hashbrown::raw::RawTableInner::new_uninitialized (src/raw/mod.rs:1476:38)", -"0x1045e48bc: hashbrown::raw::RawTableInner::fallible_with_capacity (src/raw/mod.rs:1515:21)", -"0x1045e48bc: hashbrown::raw::RawTableInner::prepare_resize (src/raw/mod.rs:2584:13)", -"0x1045e48bc: hashbrown::raw::RawTableInner::resize_inner (src/raw/mod.rs:2782:34)", -"0x1045e48bc: hashbrown::raw::RawTableInner::reserve_rehash_inner (src/raw/mod.rs:2670:18)", -"0x1045e48bc: hashbrown::raw::RawTable::reserve_rehash (src/raw/mod.rs:991:24)", -"0x104114f54: hashbrown::raw::RawTable::reserve (src/raw/mod.rs:940:22)", -"0x104114f54: hashbrown::raw::RawTable::find_or_find_insert_slot (src/raw/mod.rs:1146:14)", -"0x104114f54: hashbrown::map::HashMap::find_or_find_insert_slot (hashbrown-0.15.4/src/map.rs:1812:20)", -"0x104114f54: hashbrown::map::HashMap::insert (hashbrown-0.15.4/src/map.rs:1792:20)", -"0x104114698: as core::iter::traits::collect::Extend<(K,V)>>::extend::{{closure}} (hashbrown-0.15.4/src/map.rs:4497:18)", -"0x104114698: core::iter::traits::iterator::Iterator::for_each::call::{{closure}} (iter/traits/iterator.rs:824:29)", -"0x104114698: core::iter::adapters::filter_map::filter_map_fold::{{closure}} (iter/adapters/filter_map.rs:40:20)", -"0x104114698: as core::iter::traits::iterator::Iterator>::fold (slice/iter/macros.rs:255:27)", -"0x104114698: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/filter_map.rs:146:19)", -"0x104114698: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", -"0x104114698: as core::iter::traits::collect::Extend<(K,V)>>::extend (hashbrown-0.15.4/src/map.rs:4496:14)", -"0x104114698: as core::iter::traits::collect::Extend<(K,V)>>::extend (collections/hash/map.rs:2796:19)", -"0x104114698: as core::iter::traits::collect::FromIterator<(K,V)>>::from_iter (ahash-0.8.12/src/hash_map.rs:355:15)", -"0x104114698: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x104114698: browserslist_data::caniuse::BROWSER_VERSION_ALIASES::{{closure}} (browserslist-data-0.1.4/src/caniuse.rs:62:10)", -"0x104114698: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", -"0x10459226c: ::allocate (alloc/src/alloc.rs:250:14)", -"0x10459226c: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x10459226c: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x10459226c: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x10459226c: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x10459226c: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x10459226c: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:54:33)", -"0x10459226c: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x10459226c: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x10459226c: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x10459226c: regex_syntax::hir::interval::IntervalSet::new (src/hir/interval.rs:74:52)", -"0x10459226c: regex_syntax::hir::ClassUnicode::new (src/hir/mod.rs:1065:29)", -"0x10459226c: regex_syntax::hir::Hir::dot (src/hir/mod.rs:661:55)", -"0x10459226c: regex_syntax::hir::translate::TranslatorI::hir_dot (src/hir/translate.rs:916:12)", -"0x10459226c: ::visit_post (src/hir/translate.rs:393:47)", -"0x104156990: alloc::raw_vec::RawVecInner::grow_amortized (src/raw_vec/mod.rs:664:19)", -"0x104156990: alloc::raw_vec::RawVecInner::grow_one (src/raw_vec/mod.rs:571:32)", -"0x104156990: alloc::raw_vec::RawVec::grow_one (src/raw_vec/mod.rs:340:20)", -"0x104161658: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x104161658: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x104161658: >::deserialize::VecVisitor as serde_core::de::Visitor>::visit_seq (src/de/impls.rs:1165:28)", -"0x104161658: <&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_seq (serde_json-1.0.147/src/de.rs:1750:39)", -"0x104161658: serde_core::de::impls::>::deserialize (src/de/impls.rs:1175:22)", -"0x104161658: as serde_core::de::DeserializeSeed>::deserialize (src/de/mod.rs:825:9)", -"0x104257d20: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x104257d20: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x104257d20: std::sys::pal::unix::thread::Thread::new (pal/unix/thread.rs:47:34)", -"0x104257d20: std::thread::Builder::spawn_unchecked_ (src/thread/mod.rs:598:30)", -"0x104257d20: std::thread::Builder::spawn_unchecked (src/thread/mod.rs:467:37)", -"0x104257d20: std::thread::Builder::spawn (src/thread/mod.rs:399:23)", -"0x104257d20: std::thread::spawn (src/thread/mod.rs:729:20)", -"0x104257d20: indicatif::progress_bar::Ticker::new (indicatif-0.18.3/src/progress_bar.rs:706:27)", -"0x104257d20: indicatif::progress_bar::ProgressBar::stop_and_replace_ticker::{{closure}} (indicatif-0.18.3/src/progress_bar.rs:216:49)", -"0x104257d20: core::option::Option::map (core/src/option.rs:1158:29)", -"0x104257d20: indicatif::progress_bar::ProgressBar::stop_and_replace_ticker (indicatif-0.18.3/src/progress_bar.rs:216:34)", -"0x104257d20: indicatif::progress_bar::ProgressBar::enable_steady_tick (indicatif-0.18.3/src/progress_bar.rs:202:14)", -"0x104257d20: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:158:8)", -"0x1045f4be0: std::collections::hash::map::HashMap::insert (collections/hash/map.rs:1204:19)", -"0x1045f4be0: regex_automata::hybrid::dfa::Lazy::add_state (src/hybrid/dfa.rs:2321:33)", -"0x1045f4be0: regex_automata::hybrid::dfa::Lazy::add_builder_state (src/hybrid/dfa.rs:2270:27)", -"0x1045f4be0: regex_automata::hybrid::dfa::Lazy::cache_next_state (src/hybrid/dfa.rs:2151:25)", -"0x104257400: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104257400: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104257400: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104257400: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104257400: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104257400: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x104257400: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x104257400: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x104257400: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", -"0x104257400: alloc::str::::to_owned (alloc/src/str.rs:211:62)", -"0x104257400: >::from (alloc/src/string.rs:3056:11)", -"0x104257400: <&str as alloc::string::SpecToString>::spec_to_string (alloc/src/string.rs:2977:21)", -"0x104257400: ::to_string (alloc/src/string.rs:2809:9)", -"0x104257400: indicatif::style::ProgressStyle::tick_strings::{{closure}} (indicatif-0.18.3/src/style.rs:150:48)", -"0x104257400: core::iter::adapters::map::map_fold::{{closure}} (iter/adapters/map.rs:88:28)", -"0x104257400: as core::iter::traits::iterator::Iterator>::fold (slice/iter/macros.rs:255:27)", -"0x104257400: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/map.rs:128:19)", -"0x104257400: core::iter::traits::iterator::Iterator::for_each (iter/traits/iterator.rs:827:14)", -"0x104257400: alloc::vec::Vec::extend_trusted (src/vec/mod.rs:3774:26)", -"0x104257400: as alloc::vec::spec_extend::SpecExtend>::spec_extend (src/vec/spec_extend.rs:29:14)", -"0x104257400: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:62:16)", -"0x104257400: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x104257400: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x104257400: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x104257400: indicatif::style::ProgressStyle::tick_strings (indicatif-0.18.3/src/style.rs:150:68)", -"0x104257400: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:157:51)", -"0x10425c1c4: ::fmt (src/fmt/mod.rs:2753:11)", -"0x10425c1c4: ::fmt (alloc/src/string.rs:2627:9)", -"0x10425c1c4: as core::fmt::Display>::fmt (console-0.16.2/src/utils.rs:811:17)", -"0x104259e3c: alloc::fmt::format::{{closure}} (alloc/src/fmt.rs:654:34)", -"0x104259e3c: core::option::Option::map_or_else (core/src/option.rs:1271:21)", -"0x104259e3c: alloc::fmt::format (alloc/src/fmt.rs:654:19)", -"0x104259e3c: grimoire_css_lib::start_as_cli (grimoire-css/src/lib.rs:178:23)", -"0x10415d780: std::path::Path::join (std/src/path.rs:2742:14)", -"0x10415d780: grimoire_css_lib::core::config::config_fs::ConfigFs::load_external_variables (core/config/config_fs.rs:723:14)", -"0x10415d780: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:184:28)", -"0x104158c50: std::collections::hash::map::HashMap::insert (collections/hash/map.rs:1204:19)", -"0x104158c50: grimoire_css_lib::core::component::COMPONENTS_MAP::{{closure}} (src/core/component.rs:482:11)", -"0x104158c50: core::ops::function::FnOnce::call_once (src/ops/function.rs:253:5)", -"0x1042227ac: alloc::vec::Vec::push_mut (src/vec/mod.rs:2605:22)", -"0x1042227ac: alloc::vec::Vec::push (src/vec/mod.rs:2522:22)", -"0x1042227ac: grimoire_css_lib::core::css_builder::css_builder_base::CssBuilder::build_joined_css_and_pieces (core/css_builder/css_builder_base.rs:234:41)", -"0x10455571c: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x10455571c: alloc::boxed::Box::new (alloc/src/boxed.rs:261:16)", -"0x10455571c: alloc::sync::Arc::new (alloc/src/sync.rs:409:25)", -"0x10455571c: regex_automata::util::prefilter::Prefilter::from_choice (util/prefilter/mod.rs:227:38)", -"0x10454d874: regex_automata::util::prefilter::Prefilter::new::{{closure}} (util/prefilter/mod.rs:210:13)", -"0x10454d874: core::option::Option::and_then (core/src/option.rs:1537:24)", -"0x10454d874: regex_automata::util::prefilter::Prefilter::new (util/prefilter/mod.rs:207:36)", -"0x10454d874: regex_automata::meta::strategy::ReverseSuffix::new (src/meta/strategy.rs:1188:25)", -"0x10454d874: regex_automata::meta::strategy::new (src/meta/strategy.rs:170:18)", -"0x10415c5c0: grimoire_css_lib::core::config::config_fs::ConfigFs::load_external_scrolls (core/config/config_fs.rs:601:26)", -"0x10415c5c0: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:181:26)", -"0x104170db8: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104170db8: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104170db8: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104170db8: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104170db8: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104170db8: alloc::vec::Vec::with_capacity (src/vec/mod.rs:500:9)", -"0x104170db8: as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter (src/vec/spec_from_iter_nested.rs:31:34)", -"0x104170db8: as alloc::vec::spec_from_iter::SpecFromIter>::from_iter (src/vec/spec_from_iter.rs:34:9)", -"0x104170db8: as core::iter::traits::collect::FromIterator>::from_iter (src/vec/mod.rs:3633:9)", -"0x104170db8: core::iter::traits::iterator::Iterator::collect (iter/traits/iterator.rs:2027:9)", -"0x10416fa8c: grimoire_css_lib::core::spell::Spell::new (src/core/spell.rs:130:14)", -"0x104226f88: alloc::fmt::format::{{closure}} (alloc/src/fmt.rs:654:34)", -"0x104226f88: core::option::Option::map_or_else (core/src/option.rs:1271:21)", -"0x104226f88: alloc::fmt::format (alloc/src/fmt.rs:654:19)", -"0x104226f88: grimoire_css_lib::core::css_generator::css_generator_base::CssGenerator::escape_css_class_name::{{closure}} (core/css_generator/css_generator_base.rs:277:53)", -"0x10412bae8: ::allocate (alloc/src/alloc.rs:250:14)", -"0x10412bae8: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x10412bae8: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x10412bae8: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x10412bae8: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x10412bae8: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x10412bae8: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x10412bae8: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x10412bae8: alloc::slice::::to_owned (alloc/src/slice.rs:838:14)", -"0x10412bae8: cssparser::tokenizer::consume_name (cssparser-0.33.0/src/tokenizer.rs:937:74)", -"0x10415a934: grimoire_css_lib::core::config::config_fs::ConfigFs::find_custom_animations (core/config/config_fs.rs:516:13)", -"0x10415a934: grimoire_css_lib::core::config::config_fs::ConfigFs::load (core/config/config_fs.rs:178:36)", -"0x104145420: ::allocate (alloc/src/alloc.rs:250:14)", -"0x104145420: alloc::raw_vec::RawVecInner::try_allocate_in (src/raw_vec/mod.rs:476:47)", -"0x104145420: alloc::raw_vec::RawVecInner::with_capacity_in (src/raw_vec/mod.rs:422:15)", -"0x104145420: alloc::raw_vec::RawVec::with_capacity_in (src/raw_vec/mod.rs:190:20)", -"0x104145420: alloc::vec::Vec::with_capacity_in (src/vec/mod.rs:929:20)", -"0x104145420: ::to_vec_in::ConvertVec>::to_vec (alloc/src/slice.rs:445:29)", -"0x104145420: alloc::slice::::to_vec_in (alloc/src/slice.rs:398:16)", -"0x104145420: alloc::slice::::to_vec (alloc/src/slice.rs:374:14)", -"0x104145420: std::sys::os_str::bytes::Slice::to_owned (sys/os_str/bytes.rs:314:33)", -"0x104145420: std::ffi::os_str::OsStr::to_os_string (src/ffi/os_str.rs:984:38)", -"0x104145420: >::from (std/src/path.rs:1845:34)", -"0x104145420: glob::glob_with::{{closure}} (glob-0.3.3/src/lib.rs:246:37)", -"0x104145420: core::option::Option::map_or_else (core/src/option.rs:1271:21)", -"0x104145420: glob::glob_with (glob-0.3.3/src/lib.rs:246:22)", -"0x104145420: glob::glob (glob-0.3.3/src/lib.rs:165:5)", -"0x1040f8ad8: alloc::raw_vec::RawVecInner::reserve (src/raw_vec/mod.rs:563:13)", -"0x1040f8ad8: alloc::raw_vec::RawVec::reserve (src/raw_vec/mod.rs:331:20)", -"0x1040f8ad8: alloc::vec::Vec::reserve (src/vec/mod.rs:1339:18)", -"0x1040f8ad8: alloc::vec::Vec::append_elements (src/vec/mod.rs:2732:14)", -"0x1040f8ad8: as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter>>::spec_extend (src/vec/spec_extend.rs:61:23)", -"0x1040f8ad8: alloc::vec::Vec::extend_from_slice (src/vec/mod.rs:3262:14)", -"0x1040f8ad8: alloc::string::String::push_str (alloc/src/string.rs:1113:18)", -"0x1040f8ad8: browserslist::resolve::{{closure}} (browserslist-rs-0.19.0/src/lib.rs:103:15)", -"0x1040f8ad8: as core::iter::traits::iterator::Iterator>::fold::enumerate::{{closure}} (iter/adapters/enumerate.rs:140:27)", -"0x1040f8ad8: core::ops::try_trait::NeverShortCircuit::wrap_mut_2::{{closure}} (src/ops/try_trait.rs:401:39)", -"0x1040f8ad8: core::array::iter::iter_inner::PolymorphicIter<[core::mem::maybe_uninit::MaybeUninit]>::try_fold::{{closure}} (array/iter/iter_inner.rs:220:13)", -"0x1040f8ad8: ::try_fold (src/ops/index_range.rs:169:21)", -"0x1040f8ad8: core::array::iter::iter_inner::PolymorphicIter<[core::mem::maybe_uninit::MaybeUninit]>::try_fold (array/iter/iter_inner.rs:215:20)", -"0x1040f8ad8: core::array::iter::iter_inner::PolymorphicIter<[core::mem::maybe_uninit::MaybeUninit]>::fold (array/iter/iter_inner.rs:202:14)", -"0x1040f8ad8: as core::iter::traits::iterator::Iterator>::fold (src/array/iter.rs:253:27)", -"0x1040f8ad8: as core::iter::traits::iterator::Iterator>::fold (iter/adapters/enumerate.rs:146:19)", -"0x1040f8ad8: browserslist::resolve (browserslist-rs-0.19.0/src/lib.rs:99:10)", -"0x1040f8ad8: browserslist::queries::dead::dead (src/queries/dead.rs:5:5)", -"0x1040f8ad8: browserslist::queries::query (src/queries/mod.rs:219:28)", -"0x104107360: alloc::alloc::exchange_malloc (alloc/src/alloc.rs:351:18)", -"0x104107360: browserslist::queries::browser_accurate::browser_accurate (src/queries/browser_accurate.rs:27:12)" -] -} \ No newline at end of file