From 133e22768d3402fb647e0c182e88d345e099bfeb Mon Sep 17 00:00:00 2001 From: Joe Vilches Date: Tue, 13 Feb 2024 16:04:50 -0800 Subject: [PATCH] Support for (de)serializing measure funcs Summary: In addition to all the state that gets set on the node that is easy to serialize - like floats, enums, bools, etc - we also need to serialize measure functions. This is because these functions take a nontrivial amount of time up during layout and we should capture that. Also, they are important to the ability to truly replay layout as it was captured as the results of the measure functions determine many of the steps the layout algorithm takes. Capturing this is rather tricky however, but I think I found a solution that is relatively simple and non-error prone. Essentially, since we are capturing the entire tree and virtually every input that goes into the flexbox algorithm, we *should* be able to replay layout exactly as it was captured. This means that the order in which measure functions are called *should* be the same. If this is the case, then all we need to do to capture the measure functions is store their input, output, and duration in a big array. During deserialization we just keep track of an index and use that to determine which measure function we should call. That is the premise behind what happens in this diff. In theory the algorithm could change and the capture would be wrong but it is easy enough to recapture again. Additionally we need to dirty the tree so that we get rid of caching which might omit some measure func calls In order to capture you need to insert a method exposed by CaptureTree.h into the client measure func, which is kind of annoying but not that bad. In future diffs I will put a macro in place to make this even easier. I also add our first capture! Which is of a large react native desktop app Reviewed By: NickGerleman Differential Revision: D53581121 --- benchmark/Benchmark.cpp | 86 +- benchmark/Benchmark.h | 8 +- benchmark/TreeDeserialization.cpp | 245 + benchmark/TreeDeserialization.h | 229 +- benchmark/captures/chat-mac.json | 24109 ++++++++++++++++++++++++++++ capture/CaptureTree.cpp | 54 +- capture/CaptureTree.h | 18 + capture/NodeToString.cpp | 25 +- capture/NodeToString.h | 6 + 9 files changed, 24568 insertions(+), 212 deletions(-) create mode 100644 benchmark/TreeDeserialization.cpp create mode 100644 benchmark/captures/chat-mac.json diff --git a/benchmark/Benchmark.cpp b/benchmark/Benchmark.cpp index 787d34865f..96a394ae24 100644 --- a/benchmark/Benchmark.cpp +++ b/benchmark/Benchmark.cpp @@ -5,11 +5,15 @@ * LICENSE file in the root directory of this source tree. */ +#include #include #include +#include +#include #include #include +#include #include namespace facebook::yoga { @@ -17,10 +21,35 @@ namespace facebook::yoga { using namespace nlohmann; using namespace std::chrono; -constexpr uint32_t kNumRepititions = 1000; +constexpr uint32_t kNumRepititions = 100; using SteadyClockDurations = std::array; +YGSize mockMeasureFunc( + YGNodeConstRef node, + float availableWidth, + YGMeasureMode widthMode, + float availableHeight, + YGMeasureMode heightMode) { + (void)node; + (void)availableHeight; + (void)availableWidth; + (void)widthMode; + (void)heightMode; + MeasureFuncVecWithIndex* fns = + static_cast(YGNodeGetContext(node)); + if (fns->index >= fns->vec.size()) { + return {10.0, 10.0}; + } + + auto values = fns->vec.at(fns->index); + fns->index++; + + std::this_thread::sleep_for(std::chrono::nanoseconds(values.durationNs)); + + return {values.outputWidth, values.outputHeight}; +} + std::shared_ptr buildConfigFromJson(const json& j) { json jsonConfig = j["config"]; std::shared_ptr config(YGConfigNew(), YGConfigFree); @@ -186,24 +215,37 @@ void setStylesFromJson(const json& j, YGNodeRef node) { std::shared_ptr buildNodeFromJson( const json& j, - std::shared_ptr config) { + std::shared_ptr config, + std::shared_ptr fns) { std::shared_ptr node(YGNodeNewWithConfig(config.get()), YGNodeFree); - json nodeState = j["node"]; + if (!j.contains("node") || j["node"].is_null()) { + return node; + } + + json nodeState = j["node"]; for (json::iterator it = nodeState.begin(); it != nodeState.end(); it++) { if (it.key() == "always-forms-containing-block") { YGNodeSetAlwaysFormsContainingBlock(node.get(), it.value()); + } else if (it.key() == "has-custom-measure" && it.value()) { + YGNodeSetContext(node.get(), fns.get()); + YGNodeSetMeasureFunc(node.get(), mockMeasureFunc); } } return node; } -YogaNodeAndConfig -buildTreeFromJson(const json& j, YogaNodeAndConfig* parent, size_t index) { - std::shared_ptr config = buildConfigFromJson(j); - std::shared_ptr node = buildNodeFromJson(j, config); - YogaNodeAndConfig wrapper{node, config, std::vector{}}; +std::shared_ptr buildTreeFromJson( + const json& j, + std::shared_ptr fns, + std::shared_ptr parent, + size_t index) { + auto config = buildConfigFromJson(j); + auto node = buildNodeFromJson(j, config, fns); + auto wrapper = std::make_shared( + node, config, std::vector>{}); + if (parent != nullptr) { YGNodeInsertChild(parent->node_.get(), node.get(), index); parent->children_.push_back(wrapper); @@ -211,22 +253,25 @@ buildTreeFromJson(const json& j, YogaNodeAndConfig* parent, size_t index) { setStylesFromJson(j, node.get()); - json children = j["children"]; - size_t childIndex = 0; - for (json child : children) { - buildTreeFromJson(child, &wrapper, childIndex); - childIndex++; + if (j.contains("children")) { + json children = j["children"]; + size_t childIndex = 0; + for (json child : children) { + buildTreeFromJson(child, fns, wrapper, childIndex); + childIndex++; + } } return wrapper; } -BenchmarkResult generateBenchmark(const std::filesystem::path& capturePath) { - std::ifstream captureFile(capturePath); - json capture = json::parse(captureFile); +BenchmarkResult generateBenchmark(json& capture) { + auto fns = std::make_shared(); + populateMeasureFuncVec(capture["measure-funcs"], fns); auto treeCreationBegin = steady_clock::now(); - YogaNodeAndConfig root = buildTreeFromJson(capture, nullptr, 0 /*index*/); + std::shared_ptr root = + buildTreeFromJson(capture["tree"], fns, nullptr, 0 /*index*/); auto treeCreationEnd = steady_clock::now(); json layoutInputs = capture["layout-inputs"]; @@ -236,7 +281,7 @@ BenchmarkResult generateBenchmark(const std::filesystem::path& capturePath) { auto layoutBegin = steady_clock::now(); YGNodeCalculateLayout( - root.node_.get(), availableWidth, availableHeight, direction); + root->node_.get(), availableWidth, availableHeight, direction); auto layoutEnd = steady_clock::now(); return BenchmarkResult{ @@ -278,8 +323,11 @@ void benchmark(std::filesystem::path& capturesDir) { SteadyClockDurations layoutDurations; SteadyClockDurations totalDurations; + std::ifstream captureFile(capture.path()); + json j = json::parse(captureFile); + for (uint32_t i = 0; i < kNumRepititions; i++) { - BenchmarkResult result = generateBenchmark(capture.path()); + BenchmarkResult result = generateBenchmark(j); treeCreationDurations[i] = result.treeCreationDuration; layoutDurations[i] = result.layoutDuration; totalDurations[i] = result.treeCreationDuration + result.layoutDuration; diff --git a/benchmark/Benchmark.h b/benchmark/Benchmark.h index 2d5097b162..941d5acdb9 100644 --- a/benchmark/Benchmark.h +++ b/benchmark/Benchmark.h @@ -17,9 +17,15 @@ namespace facebook::yoga { struct YogaNodeAndConfig { + YogaNodeAndConfig( + std::shared_ptr node, + std::shared_ptr config, + std::vector> children) + : node_(node), config_(config), children_(children) {} + std::shared_ptr node_; std::shared_ptr config_; - std::vector children_; + std::vector> children_; }; struct BenchmarkResult { diff --git a/benchmark/TreeDeserialization.cpp b/benchmark/TreeDeserialization.cpp new file mode 100644 index 0000000000..beadf5e866 --- /dev/null +++ b/benchmark/TreeDeserialization.cpp @@ -0,0 +1,245 @@ +/* + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + +#include +#include + +#include +#include +#include +#include + +namespace facebook::yoga { + +using namespace nlohmann; + +static inline bool isAuto(json& j) { + return j.is_string() && j == "auto"; +} + +static inline std::string invalidArgumentMessage( + std::string arg, + std::string enumName) { + return arg + " does not represent any " + enumName + " values"; +} + +static inline float floatFromJson(json& j) { + float result = YGUndefined; + if (!j.is_null()) { + result = j; + } + + return result; +} + +YGFlexDirection flexDirectionFromString(std::string str) { + if (str == "row") { + return YGFlexDirectionRow; + } else if (str == "row-reverse") { + return YGFlexDirectionRowReverse; + } else if (str == "column") { + return YGFlexDirectionColumn; + } else if (str == "column-reverse") { + return YGFlexDirectionColumnReverse; + } else { + throw std::invalid_argument(invalidArgumentMessage(str, "YGFlexDirection")); + } +} + +YGJustify justifyContentFromString(std::string str) { + if (str == "flex-start") { + return YGJustifyFlexStart; + } else if (str == "center") { + return YGJustifyCenter; + } else if (str == "flex-end") { + return YGJustifyFlexEnd; + } else if (str == "space-between") { + return YGJustifySpaceBetween; + } else if (str == "space-around") { + return YGJustifySpaceAround; + } else if (str == "space-evenly") { + return YGJustifySpaceEvenly; + } else { + throw std::invalid_argument(invalidArgumentMessage(str, "YGJustify")); + } +} + +YGAlign alignFromString(std::string str) { + if (str == "auto") { + return YGAlignAuto; + } else if (str == "flex-start") { + return YGAlignFlexStart; + } else if (str == "center") { + return YGAlignCenter; + } else if (str == "flex-end") { + return YGAlignFlexEnd; + } else if (str == "stretch") { + return YGAlignStretch; + } else if (str == "baseline") { + return YGAlignBaseline; + } else if (str == "space-between") { + return YGAlignSpaceBetween; + } else if (str == "space-around") { + return YGAlignSpaceAround; + } else if (str == "space-evenly") { + return YGAlignSpaceEvenly; + } else { + throw std::invalid_argument(invalidArgumentMessage(str, "YGAlign")); + } +} + +YGWrap wrapFromString(std::string str) { + if (str == "no-wrap") { + return YGWrapNoWrap; + } else if (str == "wrap") { + return YGWrapWrap; + } else if (str == "wrap-reverse") { + return YGWrapWrapReverse; + } else { + throw std::invalid_argument(invalidArgumentMessage(str, "YGAlign")); + } +} + +YGOverflow overflowFromString(std::string str) { + if (str == "visible") { + return YGOverflowVisible; + } else if (str == "hidden") { + return YGOverflowHidden; + } else if (str == "scroll") { + return YGOverflowScroll; + } else { + throw std::invalid_argument(invalidArgumentMessage(str, "YGAlign")); + } +} + +YGDisplay displayFromString(std::string str) { + if (str == "flex") { + return YGDisplayFlex; + } else if (str == "none") { + return YGDisplayNone; + } else { + throw std::invalid_argument(invalidArgumentMessage(str, "YGAlign")); + } +} + +YGPositionType positionTypeFromString(std::string str) { + if (str == "static") { + return YGPositionTypeStatic; + } else if (str == "relative") { + return YGPositionTypeRelative; + } else if (str == "absolute") { + return YGPositionTypeAbsolute; + } else { + throw std::invalid_argument(invalidArgumentMessage(str, "YGAlign")); + } +} + +YGUnit unitFromJson(json& j) { + if (isAuto(j)) { + return YGUnitAuto; + } + + std::string unit = j["unit"]; + if (unit == "px") { + return YGUnitPoint; + } else if (unit == "pct") { + return YGUnitPercent; + } else { + throw std::invalid_argument(invalidArgumentMessage(unit, "YGUnit")); + } +} + +YGEdge edgeFromString(std::string str) { + if (str == "left") { + return YGEdgeLeft; + } else if (str == "top") { + return YGEdgeTop; + } else if (str == "right") { + return YGEdgeRight; + } else if (str == "bottom") { + return YGEdgeBottom; + } else if (str == "start") { + return YGEdgeStart; + } else if (str == "end") { + return YGEdgeEnd; + } else if (str == "horizontal") { + return YGEdgeHorizontal; + } else if (str == "vertical") { + return YGEdgeVertical; + } else if (str == "all") { + return YGEdgeAll; + } else { + throw std::invalid_argument(invalidArgumentMessage(str, "YGEdge")); + } +} + +YGErrata errataFromString(std::string str) { + if (str == "none") { + return YGErrataNone; + } else if (str == "all") { + return YGErrataAll; + } else if (str == "classic") { + return YGErrataClassic; + } else { + throw std::invalid_argument(invalidArgumentMessage(str, "YGErrata")); + } +} + +YGExperimentalFeature experimentalFeatureFromString(std::string str) { + if (str == "web-flex-basis") { + return YGExperimentalFeatureWebFlexBasis; + } else { + throw std::invalid_argument( + invalidArgumentMessage(str, "YGExperimentalFeature")); + } +} + +std::string edgeStringFromPropertyName( + json::iterator it, + std::string propertyName) { + return it.key().substr(propertyName.length() + 1); +} + +YGDirection directionFromString(std::string str) { + if (str == "ltr") { + return YGDirectionLTR; + } else if (str == "rtl") { + return YGDirectionRTL; + } else if (str == "inherit") { + return YGDirectionInherit; + } else { + throw std::invalid_argument(invalidArgumentMessage(str, "YGDirection")); + } +} + +YGMeasureMode measureModeFromString(std::string str) { + if (str == "at-most") { + return YGMeasureModeAtMost; + } else if (str == "exactly") { + return YGMeasureModeExactly; + } else if (str == "undefined") { + return YGMeasureModeUndefined; + } else { + throw std::invalid_argument(invalidArgumentMessage(str, "YGMeasureMode")); + } +} + +void populateMeasureFuncVec( + json& j, + std::shared_ptr fns) { + for (auto measureFuncJson : j) { + fns->vec.push_back(SerializedMeasureFunc{ + floatFromJson(measureFuncJson["width"]), + measureModeFromString(measureFuncJson["width-mode"]), + floatFromJson(measureFuncJson["height"]), + measureModeFromString(measureFuncJson["height-mode"]), + floatFromJson(measureFuncJson["output-width"]), + floatFromJson(measureFuncJson["output-height"]), + measureFuncJson["duration-ns"]}); + } +} +} // namespace facebook::yoga diff --git a/benchmark/TreeDeserialization.h b/benchmark/TreeDeserialization.h index 842d4bb5c7..e451df9db9 100644 --- a/benchmark/TreeDeserialization.h +++ b/benchmark/TreeDeserialization.h @@ -7,6 +7,10 @@ #pragma once +#include +#include + +#include #include #include @@ -14,193 +18,42 @@ namespace facebook::yoga { using namespace nlohmann; -inline std::string invalidArgumentMessage( - std::string arg, - std::string enumName) { - return arg + " does not represent any " + enumName + " values"; -} - -inline YGFlexDirection flexDirectionFromString(std::string str) { - if (str == "row") { - return YGFlexDirectionRow; - } else if (str == "row-reverse") { - return YGFlexDirectionRowReverse; - } else if (str == "column") { - return YGFlexDirectionColumn; - } else if (str == "column-reverse") { - return YGFlexDirectionColumnReverse; - } else { - throw std::invalid_argument(invalidArgumentMessage(str, "YGFlexDirection")); - } -} - -inline YGJustify justifyContentFromString(std::string str) { - if (str == "flex-start") { - return YGJustifyFlexStart; - } else if (str == "center") { - return YGJustifyCenter; - } else if (str == "flex-end") { - return YGJustifyFlexEnd; - } else if (str == "space-between") { - return YGJustifySpaceBetween; - } else if (str == "space-around") { - return YGJustifySpaceAround; - } else if (str == "space-evenly") { - return YGJustifySpaceEvenly; - } else { - throw std::invalid_argument(invalidArgumentMessage(str, "YGJustify")); - } -} - -inline YGAlign alignFromString(std::string str) { - if (str == "auto") { - return YGAlignAuto; - } else if (str == "flex-start") { - return YGAlignFlexStart; - } else if (str == "center") { - return YGAlignCenter; - } else if (str == "flex-end") { - return YGAlignFlexEnd; - } else if (str == "stretch") { - return YGAlignStretch; - } else if (str == "baseline") { - return YGAlignBaseline; - } else if (str == "space-between") { - return YGAlignSpaceBetween; - } else if (str == "space-around") { - return YGAlignSpaceAround; - } else if (str == "space-evenly") { - return YGAlignSpaceEvenly; - } else { - throw std::invalid_argument(invalidArgumentMessage(str, "YGAlign")); - } -} - -inline YGWrap wrapFromString(std::string str) { - if (str == "no-wrap") { - return YGWrapNoWrap; - } else if (str == "wrap") { - return YGWrapWrap; - } else if (str == "wrap-reverse") { - return YGWrapWrapReverse; - } else { - throw std::invalid_argument(invalidArgumentMessage(str, "YGAlign")); - } -} - -inline YGOverflow overflowFromString(std::string str) { - if (str == "visible") { - return YGOverflowVisible; - } else if (str == "hidden") { - return YGOverflowHidden; - } else if (str == "scroll") { - return YGOverflowScroll; - } else { - throw std::invalid_argument(invalidArgumentMessage(str, "YGAlign")); - } -} - -inline YGDisplay displayFromString(std::string str) { - if (str == "flex") { - return YGDisplayFlex; - } else if (str == "none") { - return YGDisplayNone; - } else { - throw std::invalid_argument(invalidArgumentMessage(str, "YGAlign")); - } -} - -inline YGPositionType positionTypeFromString(std::string str) { - if (str == "static") { - return YGPositionTypeStatic; - } else if (str == "relative") { - return YGPositionTypeRelative; - } else if (str == "absolute") { - return YGPositionTypeAbsolute; - } else { - throw std::invalid_argument(invalidArgumentMessage(str, "YGAlign")); - } -} - -inline bool isAuto(json& j) { - return j.is_string() && j == "auto"; -} - -inline YGUnit unitFromJson(json& j) { - if (isAuto(j)) { - return YGUnitAuto; - } - - std::string unit = j["unit"]; - if (unit == "px") { - return YGUnitPoint; - } else if (unit == "pct") { - return YGUnitPercent; - } else { - throw std::invalid_argument(invalidArgumentMessage(unit, "YGUnit")); - } -} - -inline YGEdge edgeFromString(std::string str) { - if (str == "left") { - return YGEdgeLeft; - } else if (str == "top") { - return YGEdgeTop; - } else if (str == "right") { - return YGEdgeRight; - } else if (str == "bottom") { - return YGEdgeBottom; - } else if (str == "start") { - return YGEdgeStart; - } else if (str == "end") { - return YGEdgeEnd; - } else if (str == "horizontal") { - return YGEdgeHorizontal; - } else if (str == "vertical") { - return YGEdgeVertical; - } else if (str == "all") { - return YGEdgeAll; - } else { - throw std::invalid_argument(invalidArgumentMessage(str, "YGEdge")); - } -} - -inline YGErrata errataFromString(std::string str) { - if (str == "none") { - return YGErrataNone; - } else if (str == "all") { - return YGErrataAll; - } else if (str == "classic") { - return YGErrataClassic; - } else { - throw std::invalid_argument(invalidArgumentMessage(str, "YGErrata")); - } -} - -inline YGExperimentalFeature experimentalFeatureFromString(std::string str) { - if (str == "web-flex-basis") { - return YGExperimentalFeatureWebFlexBasis; - } else { - throw std::invalid_argument( - invalidArgumentMessage(str, "YGExperimentalFeature")); - } -} - -inline std::string edgeStringFromPropertyName( +struct MeasureFuncVecWithIndex { + std::vector vec; + size_t index; +}; + +YGFlexDirection flexDirectionFromString(std::string str); + +YGJustify justifyContentFromString(std::string str); + +YGAlign alignFromString(std::string str); + +YGWrap wrapFromString(std::string str); + +YGOverflow overflowFromString(std::string str); + +YGDisplay displayFromString(std::string str); + +YGPositionType positionTypeFromString(std::string str); + +YGUnit unitFromJson(json& j); + +YGEdge edgeFromString(std::string str); + +YGErrata errataFromString(std::string str); + +YGExperimentalFeature experimentalFeatureFromString(std::string str); + +std::string edgeStringFromPropertyName( json::iterator it, - std::string propertyName) { - return it.key().substr(propertyName.length() + 1); -} - -inline YGDirection directionFromString(std::string str) { - if (str == "ltr") { - return YGDirectionLTR; - } else if (str == "rtl") { - return YGDirectionRTL; - } else if (str == "inherit") { - return YGDirectionInherit; - } else { - throw std::invalid_argument(invalidArgumentMessage(str, "YGDirection")); - } -} + std::string propertyName); + +YGDirection directionFromString(std::string str); + +YGMeasureMode measureModeFromString(std::string str); + +void populateMeasureFuncVec( + json& j, + std::shared_ptr fns); } // namespace facebook::yoga diff --git a/benchmark/captures/chat-mac.json b/benchmark/captures/chat-mac.json new file mode 100644 index 0000000000..935fe537f2 --- /dev/null +++ b/benchmark/captures/chat-mac.json @@ -0,0 +1,24109 @@ +{ + "layout-inputs": { + "available-height": 768.0, + "available-width": 1024.0, + "owner-direction": "ltr" + }, + "measure-funcs": [ + { + "duration-ns": 17542, + "height": 732.0, + "height-mode": "at-most", + "output-height": 23.0, + "output-width": 55.5, + "width": 294.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6583, + "height": 659.0, + "height-mode": "at-most", + "output-height": 16.0, + "output-width": 236.0, + "width": 236.0, + "width-mode": "exactly" + }, + { + "duration-ns": 7542, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 36.0, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6417, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 16.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6791, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 37.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6708, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 48.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7125, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 28.0, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6792, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 49.0, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6459, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 32.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6375, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 28.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6625, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 33.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6750, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 33.0, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6500, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 45.0, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6125, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 29.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6375, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 25.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6166, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 50.0, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6709, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 45.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6291, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 29.0, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6417, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 46.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6458, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 43.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6959, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 47.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 8334, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 48.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7042, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 25.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6250, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 49.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6708, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 35.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6167, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 38.0, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6750, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 26.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6875, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 46.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6875, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 48.0, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6250, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 39.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6917, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 30.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6208, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 50.0, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6625, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 20.0, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 5916, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 23.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6208, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 37.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6709, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 30.0, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7500, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 40.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6000, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 16.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6458, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 32.0, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6167, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 42.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6375, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 46.0, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6000, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 38.0, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6292, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 23.0, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 5833, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 36.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6542, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 34.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6209, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 33.0, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6792, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 26.0, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6541, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 37.0, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6584, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 27.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6333, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 49.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6542, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 22.0, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 5666, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 39.0, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6334, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 27.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 11500, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 29.0, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6625, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 28.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6125, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 38.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6583, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 22.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6250, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 21.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6500, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 33.0, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6167, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 49.5, + "width": 50.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7875, + "height": null, + "height-mode": "undefined", + "output-height": 36.0, + "output-width": 152.0, + "width": 200.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7375, + "height": null, + "height-mode": "undefined", + "output-height": 32.0, + "output-width": 220.0, + "width": 220.0, + "width-mode": "exactly" + }, + { + "duration-ns": 7167, + "height": null, + "height-mode": "undefined", + "output-height": 18.0, + "output-width": 87.5, + "width": 208.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7000, + "height": null, + "height-mode": "undefined", + "output-height": 16.0, + "output-width": 206.5, + "width": 208.0, + "width-mode": "at-most" + }, + { + "duration-ns": 8958, + "height": null, + "height-mode": "undefined", + "output-height": 16.0, + "output-width": 63.0, + "width": 208.0, + "width-mode": "at-most" + }, + { + "duration-ns": 4625, + "height": null, + "height-mode": "undefined", + "output-height": 16.0, + "output-width": 145.0, + "width": 145.0, + "width-mode": "exactly" + }, + { + "duration-ns": 6834, + "height": null, + "height-mode": "undefined", + "output-height": 18.0, + "output-width": 98.5, + "width": 188.0, + "width-mode": "at-most" + }, + { + "duration-ns": 5833, + "height": null, + "height-mode": "undefined", + "output-height": 16.0, + "output-width": 78.5, + "width": 188.0, + "width-mode": "at-most" + }, + { + "duration-ns": 8750, + "height": null, + "height-mode": "undefined", + "output-height": 16.0, + "output-width": 78.0, + "width": 188.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6834, + "height": null, + "height-mode": "undefined", + "output-height": 18.0, + "output-width": 102.0, + "width": 186.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6125, + "height": null, + "height-mode": "undefined", + "output-height": 16.0, + "output-width": 78.5, + "width": 186.0, + "width-mode": "at-most" + }, + { + "duration-ns": 8708, + "height": null, + "height-mode": "undefined", + "output-height": 16.0, + "output-width": 78.0, + "width": 186.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6416, + "height": null, + "height-mode": "undefined", + "output-height": 18.0, + "output-width": 66.5, + "width": 186.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6750, + "height": null, + "height-mode": "undefined", + "output-height": 16.0, + "output-width": 96.5, + "width": 186.0, + "width-mode": "at-most" + }, + { + "duration-ns": 8250, + "height": null, + "height-mode": "undefined", + "output-height": 16.0, + "output-width": 79.5, + "width": 186.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6958, + "height": null, + "height-mode": "undefined", + "output-height": 18.0, + "output-width": 74.5, + "width": 208.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6583, + "height": null, + "height-mode": "undefined", + "output-height": 16.0, + "output-width": 116.0, + "width": 208.0, + "width-mode": "at-most" + }, + { + "duration-ns": 8125, + "height": null, + "height-mode": "undefined", + "output-height": 16.0, + "output-width": 81.5, + "width": 208.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6583, + "height": null, + "height-mode": "undefined", + "output-height": 18.0, + "output-width": 101.5, + "width": 208.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6916, + "height": null, + "height-mode": "undefined", + "output-height": 16.0, + "output-width": 207.5, + "width": 208.0, + "width-mode": "at-most" + }, + { + "duration-ns": 14667, + "height": null, + "height-mode": "undefined", + "output-height": 16.0, + "output-width": 79.5, + "width": 208.0, + "width-mode": "at-most" + }, + { + "duration-ns": 4708, + "height": null, + "height-mode": "undefined", + "output-height": 16.0, + "output-width": 128.5, + "width": 128.5, + "width-mode": "exactly" + }, + { + "duration-ns": 6708, + "height": null, + "height-mode": "undefined", + "output-height": 18.0, + "output-width": 99.0, + "width": 208.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6208, + "height": null, + "height-mode": "undefined", + "output-height": 16.0, + "output-width": 141.0, + "width": 208.0, + "width-mode": "at-most" + }, + { + "duration-ns": 8500, + "height": null, + "height-mode": "undefined", + "output-height": 16.0, + "output-width": 79.5, + "width": 208.0, + "width-mode": "at-most" + }, + { + "duration-ns": 4875, + "height": null, + "height-mode": "undefined", + "output-height": 16.0, + "output-width": 128.5, + "width": 128.5, + "width-mode": "exactly" + }, + { + "duration-ns": 6458, + "height": null, + "height-mode": "undefined", + "output-height": 18.0, + "output-width": 83.0, + "width": 208.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6084, + "height": null, + "height-mode": "undefined", + "output-height": 16.0, + "output-width": 37.0, + "width": 208.0, + "width-mode": "at-most" + }, + { + "duration-ns": 8500, + "height": null, + "height-mode": "undefined", + "output-height": 16.0, + "output-width": 80.0, + "width": 208.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6583, + "height": null, + "height-mode": "undefined", + "output-height": 18.0, + "output-width": 82.0, + "width": 208.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7000, + "height": null, + "height-mode": "undefined", + "output-height": 16.0, + "output-width": 204.5, + "width": 208.0, + "width-mode": "at-most" + }, + { + "duration-ns": 11042, + "height": null, + "height-mode": "undefined", + "output-height": 16.0, + "output-width": 80.5, + "width": 208.0, + "width-mode": "at-most" + }, + { + "duration-ns": 4458, + "height": null, + "height-mode": "undefined", + "output-height": 16.0, + "output-width": 127.5, + "width": 127.5, + "width-mode": "exactly" + }, + { + "duration-ns": 8250, + "height": 31.0, + "height-mode": "at-most", + "output-height": 18.0, + "output-width": 64.0, + "width": 240.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7125, + "height": 13.0, + "height-mode": "at-most", + "output-height": 13.0, + "output-width": 19.0, + "width": 24.0, + "width-mode": "at-most" + }, + { + "duration-ns": 5958, + "height": 189.0, + "height-mode": "at-most", + "output-height": 18.0, + "output-width": 442.0, + "width": 442.0, + "width-mode": "exactly" + }, + { + "duration-ns": 7167, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 22.0, + "width": 603.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7125, + "height": null, + "height-mode": "undefined", + "output-height": 18.0, + "output-width": 292.5, + "width": 345.0, + "width-mode": "at-most" + }, + { + "duration-ns": 5125, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 563.0, + "width": 563.0, + "width-mode": "exactly" + }, + { + "duration-ns": 7458, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 48.5, + "width": 629.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7209, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 21.0, + "width": 603.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7667, + "height": null, + "height-mode": "undefined", + "output-height": 90.0, + "output-width": 345.0, + "width": 345.0, + "width-mode": "at-most" + }, + { + "duration-ns": 5084, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 563.0, + "width": 563.0, + "width-mode": "exactly" + }, + { + "duration-ns": 4958, + "height": null, + "height-mode": "undefined", + "output-height": 90.0, + "output-width": 318.0, + "width": 321.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6666, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 21.0, + "width": 603.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7209, + "height": null, + "height-mode": "undefined", + "output-height": 36.0, + "output-width": 334.0, + "width": 345.0, + "width-mode": "at-most" + }, + { + "duration-ns": 4208, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 563.0, + "width": 563.0, + "width-mode": "exactly" + }, + { + "duration-ns": 4709, + "height": null, + "height-mode": "undefined", + "output-height": 54.0, + "output-width": 278.5, + "width": 321.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6792, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 48.0, + "width": 603.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7125, + "height": null, + "height-mode": "undefined", + "output-height": 18.0, + "output-width": 332.0, + "width": 345.0, + "width-mode": "at-most" + }, + { + "duration-ns": 4166, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 563.0, + "width": 563.0, + "width-mode": "exactly" + }, + { + "duration-ns": 4750, + "height": null, + "height-mode": "undefined", + "output-height": 36.0, + "output-width": 316.0, + "width": 321.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6375, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 21.0, + "width": 603.0, + "width-mode": "at-most" + }, + { + "duration-ns": 8167, + "height": null, + "height-mode": "undefined", + "output-height": 126.0, + "output-width": 345.0, + "width": 345.0, + "width-mode": "at-most" + }, + { + "duration-ns": 4209, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 563.0, + "width": 563.0, + "width-mode": "exactly" + }, + { + "duration-ns": 5209, + "height": null, + "height-mode": "undefined", + "output-height": 126.0, + "output-width": 319.5, + "width": 321.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7875, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 48.0, + "width": 603.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7000, + "height": null, + "height-mode": "undefined", + "output-height": 18.0, + "output-width": 229.5, + "width": 345.0, + "width-mode": "at-most" + }, + { + "duration-ns": 4167, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 563.0, + "width": 563.0, + "width-mode": "exactly" + }, + { + "duration-ns": 7333, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 52.5, + "width": 629.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6917, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 117.0, + "width": 605.0, + "width-mode": "at-most" + }, + { + "duration-ns": 12167, + "height": null, + "height-mode": "undefined", + "output-height": 32.0, + "output-width": 345.0, + "width": 345.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6916, + "height": null, + "height-mode": "undefined", + "output-height": 36.0, + "output-width": 305.0, + "width": 345.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6458, + "height": null, + "height-mode": "undefined", + "output-height": 32.0, + "output-width": 321.0, + "width": 321.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7625, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 81.0, + "width": 629.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6500, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 25.5, + "width": 603.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7542, + "height": null, + "height-mode": "undefined", + "output-height": 18.0, + "output-width": 237.5, + "width": 345.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7250, + "height": null, + "height-mode": "undefined", + "output-height": 36.0, + "output-width": 334.0, + "width": 345.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7250, + "height": null, + "height-mode": "undefined", + "output-height": 18.0, + "output-width": 212.0, + "width": 345.0, + "width-mode": "at-most" + }, + { + "duration-ns": 5083, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 563.0, + "width": 563.0, + "width-mode": "exactly" + }, + { + "duration-ns": 4500, + "height": null, + "height-mode": "undefined", + "output-height": 36.0, + "output-width": 291.0, + "width": 321.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7708, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 107.5, + "width": 605.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7709, + "height": null, + "height-mode": "undefined", + "output-height": 16.0, + "output-width": 299.5, + "width": 345.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7083, + "height": null, + "height-mode": "undefined", + "output-height": 18.0, + "output-width": 279.5, + "width": 345.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6958, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 7.5, + "width": 357.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6500, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 107.5, + "width": 605.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7500, + "height": null, + "height-mode": "undefined", + "output-height": 32.0, + "output-width": 344.5, + "width": 345.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6666, + "height": null, + "height-mode": "undefined", + "output-height": 36.0, + "output-width": 318.5, + "width": 345.0, + "width-mode": "at-most" + }, + { + "duration-ns": 4584, + "height": null, + "height-mode": "undefined", + "output-height": 32.0, + "output-width": 321.0, + "width": 321.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6500, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 85.0, + "width": 629.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7542, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 21.0, + "width": 603.0, + "width-mode": "at-most" + }, + { + "duration-ns": 14042, + "height": null, + "height-mode": "undefined", + "output-height": 54.0, + "output-width": 345.0, + "width": 345.0, + "width-mode": "at-most" + }, + { + "duration-ns": 4167, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 563.0, + "width": 563.0, + "width-mode": "exactly" + }, + { + "duration-ns": 7042, + "height": null, + "height-mode": "undefined", + "output-height": 54.0, + "output-width": 316.0, + "width": 321.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6667, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 22.0, + "width": 603.0, + "width-mode": "at-most" + }, + { + "duration-ns": 15584, + "height": null, + "height-mode": "undefined", + "output-height": 72.0, + "output-width": 330.0, + "width": 345.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7459, + "height": null, + "height-mode": "undefined", + "output-height": 54.0, + "output-width": 338.0, + "width": 345.0, + "width-mode": "at-most" + }, + { + "duration-ns": 4291, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 563.0, + "width": 563.0, + "width-mode": "exactly" + }, + { + "duration-ns": 7834, + "height": null, + "height-mode": "undefined", + "output-height": 90.0, + "output-width": 315.0, + "width": 321.0, + "width-mode": "at-most" + }, + { + "duration-ns": 5292, + "height": null, + "height-mode": "undefined", + "output-height": 54.0, + "output-width": 321.0, + "width": 321.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6750, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 78.0, + "width": 629.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6375, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 47.5, + "width": 603.0, + "width-mode": "at-most" + }, + { + "duration-ns": 11500, + "height": null, + "height-mode": "undefined", + "output-height": 90.0, + "output-width": 465.0, + "width": 498.75, + "width-mode": "at-most" + }, + { + "duration-ns": 7166, + "height": null, + "height-mode": "undefined", + "output-height": 20.0, + "output-width": 236.0, + "width": 236.0, + "width-mode": "exactly" + }, + { + "duration-ns": 4292, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 563.0, + "width": 563.0, + "width-mode": "exactly" + }, + { + "duration-ns": 5958, + "height": null, + "height-mode": "undefined", + "output-height": 90.0, + "output-width": 464.75, + "width": 464.75, + "width-mode": "at-most" + }, + { + "duration-ns": 6917, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 84.5, + "width": 629.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6083, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 21.0, + "width": 603.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6833, + "height": null, + "height-mode": "undefined", + "output-height": 36.0, + "output-width": 334.5, + "width": 345.0, + "width-mode": "at-most" + }, + { + "duration-ns": 4042, + "height": null, + "height-mode": "undefined", + "output-height": 14.0, + "output-width": 563.0, + "width": 563.0, + "width-mode": "exactly" + }, + { + "duration-ns": 4500, + "height": null, + "height-mode": "undefined", + "output-height": 36.0, + "output-width": 308.5, + "width": 321.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6916, + "height": 15.0, + "height-mode": "at-most", + "output-height": 15.0, + "output-width": 13.0, + "width": 14.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7042, + "height": 15.0, + "height-mode": "at-most", + "output-height": 15.0, + "output-width": 13.0, + "width": 14.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6833, + "height": 15.0, + "height-mode": "at-most", + "output-height": 15.0, + "output-width": 13.0, + "width": 14.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6584, + "height": 15.0, + "height-mode": "at-most", + "output-height": 15.0, + "output-width": 13.0, + "width": 14.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6750, + "height": 15.0, + "height-mode": "at-most", + "output-height": 15.0, + "output-width": 13.0, + "width": 14.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6917, + "height": 15.0, + "height-mode": "at-most", + "output-height": 15.0, + "output-width": 13.0, + "width": 14.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6875, + "height": 15.0, + "height-mode": "at-most", + "output-height": 15.0, + "output-width": 13.0, + "width": 14.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6542, + "height": 15.0, + "height-mode": "at-most", + "output-height": 15.0, + "output-width": 13.0, + "width": 14.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7708, + "height": 15.0, + "height-mode": "at-most", + "output-height": 15.0, + "output-width": 13.0, + "width": 14.0, + "width-mode": "at-most" + }, + { + "duration-ns": 6875, + "height": 15.0, + "height-mode": "at-most", + "output-height": 15.0, + "output-width": 13.0, + "width": 14.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7208, + "height": 32.0, + "height-mode": "at-most", + "output-height": 25.0, + "output-width": 20.0, + "width": 30.5, + "width-mode": "at-most" + }, + { + "duration-ns": 6417, + "height": 768.0, + "height-mode": "at-most", + "output-height": 20.0, + "output-width": 119.0, + "width": 644.0, + "width-mode": "at-most" + }, + { + "duration-ns": 7042, + "height": 20.0, + "height-mode": "at-most", + "output-height": 18.0, + "output-width": 417.0, + "width": 417.0, + "width-mode": "exactly" + }, + { + "duration-ns": 6167, + "height": 47.0, + "height-mode": "at-most", + "output-height": 16.0, + "output-width": 417.0, + "width": 417.0, + "width-mode": "exactly" + }, + { + "duration-ns": 7958, + "height": null, + "height-mode": "undefined", + "output-height": 7.0, + "output-width": 70.5, + "width": 1020.0, + "width-mode": "at-most" + } + ], + "tree": { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + }, + { + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 28.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 28.0 + }, + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "center", + "height": { + "unit": "px", + "value": 28.0 + }, + "margin-all": { + "unit": "px", + "value": 6.0 + }, + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "flex-grow": 1.0, + "flex-shrink": 1.0, + "justify-content": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "margin-horizontal": { + "unit": "px", + "value": 8.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 28.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 28.0 + }, + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "center", + "height": { + "unit": "px", + "value": 28.0 + }, + "margin-all": { + "unit": "px", + "value": 6.0 + }, + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "flex-grow": 1.0, + "flex-shrink": 1.0, + "justify-content": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "margin-horizontal": { + "unit": "px", + "value": 8.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 28.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 28.0 + }, + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "center", + "height": { + "unit": "px", + "value": 28.0 + }, + "margin-all": { + "unit": "px", + "value": 6.0 + }, + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "flex-grow": 1.0, + "flex-shrink": 1.0, + "justify-content": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "margin-horizontal": { + "unit": "px", + "value": 8.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 28.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 28.0 + }, + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "center", + "height": { + "unit": "px", + "value": 28.0 + }, + "margin-all": { + "unit": "px", + "value": 6.0 + }, + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "flex-grow": 1.0, + "flex-shrink": 1.0, + "justify-content": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "margin-horizontal": { + "unit": "px", + "value": 8.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "style": { + "flex-grow": 1.0, + "flex-shrink": 1.0 + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0 + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0 + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "center", + "height": { + "unit": "px", + "value": 32.0 + }, + "margin-bottom": { + "unit": "px", + "value": 13.0 + }, + "margin-end": { + "unit": "px", + "value": 13.0 + }, + "margin-start": { + "unit": "px", + "value": 14.0 + }, + "margin-top": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-content": "center", + "flex-direction": "row", + "justify-content": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-content": "stretch", + "flex": 1.0, + "margin-top": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "overflow": "hidden", + "width": { + "unit": "px", + "value": 70.0 + } + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "pct", + "value": 100.0 + }, + "width": { + "unit": "px", + "value": 1.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-horizontal": { + "unit": "px", + "value": -1.0 + }, + "min-width": { + "unit": "px", + "value": 10.0 + }, + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 70.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute", + "width": { + "unit": "px", + "value": 10.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": -2.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-start", + "flex-shrink": 1.0, + "margin-left": { + "unit": "px", + "value": 16.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 28.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 36.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 36.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 36.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 36.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-start", + "flex-direction": "row", + "margin-right": { + "unit": "px", + "value": 8.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "justify-content": "space-between", + "padding-bottom": { + "unit": "px", + "value": 8.0 + }, + "padding-top": { + "unit": "px", + "value": 30.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 16.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 16.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 16.0 + }, + "margin-start": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": -8.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 4.0 + }, + "margin-vertical": { + "unit": "px", + "value": 0.0 + }, + "width": { + "unit": "px", + "value": 16.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "border-all": { + "unit": "px", + "value": 0.0 + }, + "flex": 1.0, + "margin-all": { + "unit": "px", + "value": 0.0 + }, + "margin-end": { + "unit": "px", + "value": 0.0 + }, + "min-height": { + "unit": "px", + "value": 32.0 + }, + "padding-bottom": { + "unit": "px", + "value": 10.0 + }, + "padding-end": { + "unit": "px", + "value": 24.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 10.0 + }, + "padding-start": { + "unit": "px", + "value": 24.0 + }, + "padding-top": { + "unit": "px", + "value": 10.0 + }, + "padding-vertical": { + "unit": "px", + "value": 6.0 + } + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 14.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 14.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 16.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 16.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 16.0 + }, + "justify-content": "center", + "padding-all": { + "unit": "px", + "value": 0.0 + }, + "width": { + "unit": "px", + "value": 16.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "display": "none" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "position-right": { + "unit": "px", + "value": 8.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 1.0 + }, + "flex-direction": "row", + "margin-bottom": { + "unit": "px", + "value": 6.0 + }, + "margin-horizontal": { + "unit": "px", + "value": 12.0 + }, + "margin-top": { + "unit": "px", + "value": 7.0 + }, + "min-width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 1.0 + }, + "margin-horizontal": { + "unit": "px", + "value": 12.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "justify-content": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 14.0 + }, + "margin-right": { + "unit": "px", + "value": 12.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 5.0 + }, + "width": { + "unit": "px", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "flex-grow": 1.0, + "flex-shrink": 1.0, + "overflow": "scroll" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 18.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 18.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 24.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 24.0 + }, + "justify-content": "center", + "padding-all": { + "unit": "px", + "value": 0.0 + }, + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-top": { + "unit": "px", + "value": 13.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "pct", + "value": 100.0 + }, + "justify-content": "center", + "position-right": { + "unit": "px", + "value": 16.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute", + "width": { + "unit": "px", + "value": 20.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "padding-top": { + "unit": "px", + "value": 11.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-start": { + "unit": "px", + "value": 18.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 32.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-end": { + "unit": "px", + "value": 8.0 + }, + "margin-top": { + "unit": "px", + "value": 1.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-shrink": 1.0 + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "margin-end": { + "unit": "px", + "value": 20.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "padding-top": { + "unit": "px", + "value": 4.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0 + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "margin-top": { + "unit": "px", + "value": 1.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex": 1.0, + "flex-direction": "row", + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 2.0 + }, + "min-width": { + "unit": "px", + "value": 52.0 + }, + "padding-end": { + "unit": "px", + "value": 8.0 + }, + "padding-start": { + "unit": "px", + "value": 8.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "padding-top": { + "unit": "px", + "value": 12.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 14.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 14.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 16.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 16.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 16.0 + }, + "justify-content": "center", + "padding-all": { + "unit": "px", + "value": 0.0 + }, + "width": { + "unit": "px", + "value": 16.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-right": { + "unit": "px", + "value": 12.0 + }, + "position-top": { + "unit": "px", + "value": 12.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 1.0 + }, + "margin-bottom": { + "unit": "px", + "value": 8.0 + }, + "padding-all": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-top": { + "unit": "px", + "value": 6.0 + } + } + }, + { + "config": { + "errata": "all" + }, + "style": { + "margin-top": { + "unit": "px", + "value": 1.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "align-self": "flex-start", + "margin-bottom": { + "unit": "px", + "value": 5.0 + } + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "flex-shrink": 1.0 + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "margin-horizontal": { + "unit": "px", + "value": 10.0 + } + } + }, + { + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex": 1.0, + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "justify-content": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "flex-direction": "row", + "margin-horizontal": { + "unit": "px", + "value": 8.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 8.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "align-self": "flex-start", + "margin-bottom": { + "unit": "px", + "value": 5.0 + } + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "flex-shrink": 1.0 + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "margin-horizontal": { + "unit": "px", + "value": 10.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 12.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row-reverse" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-start": { + "unit": "px", + "value": 8.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex": 1.0, + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "justify-content": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "flex-direction": "row", + "margin-horizontal": { + "unit": "px", + "value": 8.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 8.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "align-self": "flex-start", + "margin-bottom": { + "unit": "px", + "value": 5.0 + } + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "flex-shrink": 1.0 + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "margin-horizontal": { + "unit": "px", + "value": 10.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 14.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 14.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-start": { + "unit": "px", + "value": 8.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex": 1.0, + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "justify-content": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "flex-direction": "row", + "margin-horizontal": { + "unit": "px", + "value": 8.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 8.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "align-self": "flex-start", + "margin-bottom": { + "unit": "px", + "value": 5.0 + } + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "flex-shrink": 1.0 + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "margin-horizontal": { + "unit": "px", + "value": 10.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 14.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 14.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-start": { + "unit": "px", + "value": 8.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex": 1.0, + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "justify-content": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "flex-direction": "row", + "margin-horizontal": { + "unit": "px", + "value": 8.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 8.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "align-self": "flex-start", + "margin-bottom": { + "unit": "px", + "value": 5.0 + } + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "flex-shrink": 1.0 + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "margin-horizontal": { + "unit": "px", + "value": 10.0 + } + } + }, + { + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex": 1.0, + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "justify-content": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "flex-direction": "row", + "margin-horizontal": { + "unit": "px", + "value": 8.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 8.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "align-self": "flex-start", + "margin-bottom": { + "unit": "px", + "value": 5.0 + } + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "flex-shrink": 1.0 + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "margin-horizontal": { + "unit": "px", + "value": 10.0 + } + } + }, + { + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex": 1.0, + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "justify-content": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "flex-direction": "row", + "margin-horizontal": { + "unit": "px", + "value": 8.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 8.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 34.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 34.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 34.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 34.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 12.0 + }, + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-left": { + "unit": "px", + "value": 36.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 50.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "align-self": "flex-start", + "margin-bottom": { + "unit": "px", + "value": 5.0 + } + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "flex-shrink": 1.0 + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "margin-horizontal": { + "unit": "px", + "value": 10.0 + } + } + }, + { + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex": 1.0, + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "justify-content": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "flex-direction": "row", + "margin-horizontal": { + "unit": "px", + "value": 8.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 8.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 50.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 13.0 + }, + "justify-content": "center", + "padding-vertical": { + "unit": "px", + "value": 0.0 + }, + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "justify-content": "center", + "position-bottom": { + "unit": "px", + "value": 1.0 + }, + "position-right": { + "unit": "px", + "value": -2.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "align-self": "flex-start", + "margin-bottom": { + "unit": "px", + "value": 5.0 + } + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "flex-shrink": 1.0 + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "margin-horizontal": { + "unit": "px", + "value": 10.0 + } + } + }, + { + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex": 1.0, + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "justify-content": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "flex-direction": "row", + "margin-horizontal": { + "unit": "px", + "value": 8.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 8.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 34.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 34.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 34.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 34.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 50.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 50.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "align-self": "flex-start", + "margin-bottom": { + "unit": "px", + "value": 5.0 + } + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "flex-shrink": 1.0 + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "margin-horizontal": { + "unit": "px", + "value": 10.0 + } + } + }, + { + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex": 1.0, + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "justify-content": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "flex-direction": "row", + "margin-horizontal": { + "unit": "px", + "value": 8.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 8.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0 + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-grow": 1.0, + "flex-shrink": 1.0, + "overflow": "scroll" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0 + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0 + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0 + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0 + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "px", + "value": 310.0 + } + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "pct", + "value": 100.0 + }, + "width": { + "unit": "px", + "value": 1.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-horizontal": { + "unit": "px", + "value": -1.0 + }, + "min-width": { + "unit": "px", + "value": 10.0 + }, + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 380.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute", + "width": { + "unit": "px", + "value": 10.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex": 1.0, + "height": { + "unit": "pct", + "value": 100.0 + }, + "justify-content": "center", + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute", + "width": { + "unit": "pct", + "value": 100.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 8.0 + }, + "width": { + "unit": "px", + "value": 8.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 1.0 + }, + "position-left": { + "unit": "px", + "value": 23.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "max-height": { + "unit": "px", + "value": 20.0 + } + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "margin-top": { + "unit": "px", + "value": 1.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "margin-horizontal": { + "unit": "px", + "value": 10.0 + }, + "margin-vertical": { + "unit": "px", + "value": 0.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex": 1.0, + "flex-direction": "row", + "padding-bottom": { + "unit": "px", + "value": 0.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 28.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 36.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 36.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 28.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 36.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 36.0 + } + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 6.0 + }, + "width": { + "unit": "px", + "value": 6.0 + } + } + }, + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 6.0 + }, + "position-type": "absolute", + "width": { + "unit": "px", + "value": 6.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "justify-content": "center", + "margin-left": { + "unit": "px", + "value": -4.0 + }, + "margin-right": { + "unit": "px", + "value": 4.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 28.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 36.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 36.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 28.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 36.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 36.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 36.0 + }, + "justify-content": "center", + "margin-left": { + "unit": "px", + "value": 4.0 + }, + "width": { + "unit": "px", + "value": 36.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "height": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-content": "flex-end", + "flex": 1.0, + "flex-direction": "row", + "height": { + "unit": "px", + "value": 48.0 + }, + "margin-top": { + "unit": "px", + "value": -5.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0 + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex": 1.0, + "flex-direction": "row", + "margin-start": { + "unit": "px", + "value": 5.0 + }, + "padding-top": { + "unit": "px", + "value": 26.0 + } + } + }, + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 1.0 + }, + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "min-height": { + "unit": "px", + "value": 74.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 8.0 + }, + "padding-top": { + "unit": "px", + "value": 4.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 28.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 39.0 + }, + "padding-end": { + "unit": "px", + "value": 12.0 + } + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "flex-direction": "row", + "margin-end": "auto", + "margin-start": { + "unit": "px", + "value": 10.0 + } + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 2.0 + }, + "margin-start": { + "unit": "px", + "value": 12.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 0.0 + }, + "margin-end": "auto", + "margin-vertical": { + "unit": "px", + "value": 1.0 + }, + "overflow": "hidden", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 4.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 0.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "height": { + "unit": "pct", + "value": 100.0 + }, + "position-left": { + "unit": "pct", + "value": 100.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "margin-top": { + "unit": "px", + "value": -1.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 14.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 14.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-start": { + "unit": "px", + "value": 0.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 2.0 + }, + "margin-end": { + "unit": "px", + "value": -4.0 + }, + "margin-top": { + "unit": "px", + "value": -5.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 4.0 + }, + "padding-vertical": { + "unit": "px", + "value": 3.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "justify-content": "flex-end" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-start", + "min-width": { + "unit": "px", + "value": 1.0 + }, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "max-width": { + "unit": "pct", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 0.0, + "flex-direction": "row", + "padding-right": { + "unit": "px", + "value": 0.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 12.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-start": { + "unit": "px", + "value": 4.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 12.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-start": { + "unit": "px", + "value": 4.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 12.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-start": { + "unit": "px", + "value": 4.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 12.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-start": { + "unit": "px", + "value": 4.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 12.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-start": { + "unit": "px", + "value": 4.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 12.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-start": { + "unit": "px", + "value": 4.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-end", + "flex-direction": "row", + "margin-horizontal": { + "unit": "px", + "value": 0.0 + }, + "margin-vertical": { + "unit": "px", + "value": 4.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-grow": 1.0, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 6.0 + } + } + }, + { + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "flex-wrap": "wrap" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "stretch", + "flex-direction": "row", + "justify-content": "center", + "padding-all": { + "unit": "px", + "value": 5.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 28.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 1.0 + }, + "padding-end": { + "unit": "px", + "value": 12.0 + } + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "flex-direction": "row", + "margin-end": "auto", + "margin-start": { + "unit": "px", + "value": 10.0 + } + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 2.0 + }, + "margin-start": { + "unit": "px", + "value": 12.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 0.0 + }, + "margin-end": "auto", + "margin-vertical": { + "unit": "px", + "value": 1.0 + }, + "overflow": "hidden", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 4.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 0.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "height": { + "unit": "pct", + "value": 100.0 + }, + "position-left": { + "unit": "pct", + "value": 100.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-start", + "min-width": { + "unit": "px", + "value": 1.0 + }, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "max-width": { + "unit": "pct", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 0.0, + "flex-direction": "row", + "padding-right": { + "unit": "px", + "value": 0.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-grow": 1.0, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 6.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 28.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 1.0 + }, + "padding-end": { + "unit": "px", + "value": 12.0 + } + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "flex-direction": "row", + "margin-end": "auto", + "margin-start": { + "unit": "px", + "value": 10.0 + } + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 2.0 + }, + "margin-start": { + "unit": "px", + "value": 12.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 0.0 + }, + "margin-end": "auto", + "margin-vertical": { + "unit": "px", + "value": 1.0 + }, + "overflow": "hidden", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 4.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 0.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "height": { + "unit": "pct", + "value": 100.0 + }, + "position-left": { + "unit": "pct", + "value": 100.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-start", + "min-width": { + "unit": "px", + "value": 1.0 + }, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "max-width": { + "unit": "pct", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 0.0, + "flex-direction": "row", + "padding-right": { + "unit": "px", + "value": 0.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-grow": 1.0, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 6.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 28.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 23.0 + }, + "padding-end": { + "unit": "px", + "value": 12.0 + } + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "flex-direction": "row", + "margin-end": "auto", + "margin-start": { + "unit": "px", + "value": 10.0 + } + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 2.0 + }, + "margin-start": { + "unit": "px", + "value": 12.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 0.0 + }, + "margin-end": "auto", + "margin-vertical": { + "unit": "px", + "value": 1.0 + }, + "overflow": "hidden", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 4.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 0.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "height": { + "unit": "pct", + "value": 100.0 + }, + "position-left": { + "unit": "pct", + "value": 100.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "margin-top": { + "unit": "px", + "value": -1.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 14.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 14.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-start": { + "unit": "px", + "value": 0.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 2.0 + }, + "margin-end": { + "unit": "px", + "value": -4.0 + }, + "margin-top": { + "unit": "px", + "value": -5.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 4.0 + }, + "padding-vertical": { + "unit": "px", + "value": 3.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "justify-content": "flex-end" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-start", + "min-width": { + "unit": "px", + "value": 1.0 + }, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "max-width": { + "unit": "pct", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 0.0, + "flex-direction": "row", + "padding-right": { + "unit": "px", + "value": 0.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 12.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-start": { + "unit": "px", + "value": 4.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "padding-bottom": { + "unit": "px", + "value": 4.0 + }, + "position-bottom": { + "unit": "px", + "value": 15.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-grow": 1.0, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 6.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 28.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 1.0 + }, + "padding-end": { + "unit": "px", + "value": 12.0 + } + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "flex-direction": "row", + "margin-end": "auto", + "margin-start": { + "unit": "px", + "value": 10.0 + } + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 2.0 + }, + "margin-start": { + "unit": "px", + "value": 12.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 0.0 + }, + "margin-end": "auto", + "margin-vertical": { + "unit": "px", + "value": 1.0 + }, + "overflow": "hidden", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 4.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 0.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "height": { + "unit": "pct", + "value": 100.0 + }, + "position-left": { + "unit": "pct", + "value": 100.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-start", + "min-width": { + "unit": "px", + "value": 1.0 + }, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "max-width": { + "unit": "pct", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 0.0, + "flex-direction": "row", + "padding-right": { + "unit": "px", + "value": 0.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-grow": 1.0, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 6.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 28.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 1.0 + }, + "padding-end": { + "unit": "px", + "value": 12.0 + } + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "flex-direction": "row", + "margin-end": "auto", + "margin-start": { + "unit": "px", + "value": 10.0 + } + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 2.0 + }, + "margin-start": { + "unit": "px", + "value": 12.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 0.0 + }, + "margin-end": "auto", + "margin-vertical": { + "unit": "px", + "value": 1.0 + }, + "overflow": "hidden", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 4.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 0.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "height": { + "unit": "pct", + "value": 100.0 + }, + "position-left": { + "unit": "pct", + "value": 100.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-start", + "min-width": { + "unit": "px", + "value": 1.0 + }, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "max-width": { + "unit": "pct", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 0.0, + "flex-direction": "row", + "padding-right": { + "unit": "px", + "value": 0.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "max-height": { + "unit": "px", + "value": 280.0 + }, + "overflow": "hidden", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "max-height": { + "unit": "px", + "value": 280.0 + }, + "overflow": "hidden", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-end": "auto", + "margin-vertical": { + "unit": "px", + "value": 1.0 + }, + "max-height": { + "unit": "pct", + "value": 100.0 + }, + "max-width": { + "unit": "pct", + "value": 100.0 + }, + "overflow": "hidden", + "padding-all": { + "unit": "px", + "value": 0.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 4.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 0.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "height": { + "unit": "pct", + "value": 100.0 + }, + "position-left": { + "unit": "pct", + "value": 100.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-start", + "min-width": { + "unit": "px", + "value": 1.0 + }, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "max-width": { + "unit": "pct", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 0.0, + "flex-direction": "row", + "padding-right": { + "unit": "px", + "value": 0.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 12.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-start": { + "unit": "px", + "value": 4.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "padding-bottom": { + "unit": "px", + "value": 2.0 + }, + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-grow": 1.0, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 6.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "flex-wrap": "wrap" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "stretch", + "flex-direction": "row", + "justify-content": "center", + "padding-all": { + "unit": "px", + "value": 5.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 28.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 39.0 + }, + "padding-end": { + "unit": "px", + "value": 12.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 16.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 16.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-right": { + "unit": "px", + "value": 2.0 + }, + "padding-bottom": { + "unit": "px", + "value": 3.0 + } + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "flex-direction": "row", + "margin-end": "auto", + "margin-start": { + "unit": "px", + "value": 10.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 0.0 + }, + "margin-bottom": { + "unit": "px", + "value": -19.0 + }, + "margin-end": "auto", + "margin-vertical": { + "unit": "px", + "value": 1.0 + }, + "overflow": "hidden", + "padding-bottom": { + "unit": "px", + "value": 24.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-left": { + "unit": "px", + "value": 12.0 + }, + "padding-right": { + "unit": "px", + "value": 12.0 + }, + "padding-top": { + "unit": "px", + "value": 6.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-start", + "min-width": { + "unit": "px", + "value": 1.0 + }, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "pct", + "value": 100.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 0.0 + }, + "margin-end": "auto", + "margin-vertical": { + "unit": "px", + "value": 1.0 + }, + "overflow": "hidden", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 4.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 0.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "height": { + "unit": "pct", + "value": 100.0 + }, + "position-left": { + "unit": "pct", + "value": 100.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "margin-top": { + "unit": "px", + "value": -1.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 14.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 14.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-start": { + "unit": "px", + "value": 0.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 2.0 + }, + "margin-end": { + "unit": "px", + "value": -4.0 + }, + "margin-top": { + "unit": "px", + "value": -5.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 4.0 + }, + "padding-vertical": { + "unit": "px", + "value": 3.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "justify-content": "flex-end" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-start", + "min-width": { + "unit": "px", + "value": 1.0 + }, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "max-width": { + "unit": "pct", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 0.0, + "flex-direction": "row", + "padding-right": { + "unit": "px", + "value": 0.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 12.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-start": { + "unit": "px", + "value": 4.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 12.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-start": { + "unit": "px", + "value": 4.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-end", + "flex-direction": "row", + "margin-horizontal": { + "unit": "px", + "value": 0.0 + }, + "margin-vertical": { + "unit": "px", + "value": 4.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-grow": 1.0, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 6.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "flex-wrap": "wrap" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "stretch", + "flex-direction": "row", + "justify-content": "center", + "padding-all": { + "unit": "px", + "value": 5.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 28.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 39.0 + }, + "padding-end": { + "unit": "px", + "value": 12.0 + } + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "flex-direction": "row", + "margin-end": "auto", + "margin-start": { + "unit": "px", + "value": 10.0 + } + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 2.0 + }, + "margin-start": { + "unit": "px", + "value": 12.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 0.0 + }, + "margin-end": "auto", + "margin-vertical": { + "unit": "px", + "value": 1.0 + }, + "overflow": "hidden", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 4.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 0.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "height": { + "unit": "pct", + "value": 100.0 + }, + "position-left": { + "unit": "pct", + "value": 100.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "margin-top": { + "unit": "px", + "value": -1.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 14.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 14.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-start": { + "unit": "px", + "value": 0.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 2.0 + }, + "margin-end": { + "unit": "px", + "value": -4.0 + }, + "margin-top": { + "unit": "px", + "value": -5.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 4.0 + }, + "padding-vertical": { + "unit": "px", + "value": 3.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "justify-content": "flex-end" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-start", + "min-width": { + "unit": "px", + "value": 1.0 + }, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "max-width": { + "unit": "pct", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 0.0, + "flex-direction": "row", + "padding-right": { + "unit": "px", + "value": 0.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 0.0 + }, + "margin-end": "auto", + "margin-vertical": { + "unit": "px", + "value": 1.0 + }, + "overflow": "hidden", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 4.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 0.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "height": { + "unit": "pct", + "value": 100.0 + }, + "position-left": { + "unit": "pct", + "value": 100.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-start", + "min-width": { + "unit": "px", + "value": 1.0 + }, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "max-width": { + "unit": "pct", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 0.0, + "flex-direction": "row", + "padding-right": { + "unit": "px", + "value": 0.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 0.0 + }, + "margin-end": "auto", + "margin-vertical": { + "unit": "px", + "value": 1.0 + }, + "overflow": "hidden", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 4.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 0.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "height": { + "unit": "pct", + "value": 100.0 + }, + "position-left": { + "unit": "pct", + "value": 100.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "margin-top": { + "unit": "px", + "value": -1.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 14.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 14.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-start": { + "unit": "px", + "value": 0.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 2.0 + }, + "margin-end": { + "unit": "px", + "value": -4.0 + }, + "margin-top": { + "unit": "px", + "value": -5.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 4.0 + }, + "padding-vertical": { + "unit": "px", + "value": 3.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "justify-content": "flex-end" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-start", + "min-width": { + "unit": "px", + "value": 1.0 + }, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "max-width": { + "unit": "pct", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 0.0, + "flex-direction": "row", + "padding-right": { + "unit": "px", + "value": 0.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 12.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-start": { + "unit": "px", + "value": 4.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 12.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-start": { + "unit": "px", + "value": 4.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 12.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-start": { + "unit": "px", + "value": 4.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-end", + "flex-direction": "row", + "margin-horizontal": { + "unit": "px", + "value": 0.0 + }, + "margin-vertical": { + "unit": "px", + "value": 4.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-grow": 1.0, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 6.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 28.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 23.0 + }, + "padding-end": { + "unit": "px", + "value": 12.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 16.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 16.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-right": { + "unit": "px", + "value": 2.0 + }, + "padding-bottom": { + "unit": "px", + "value": 3.0 + } + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "flex-direction": "row", + "margin-end": "auto", + "margin-start": { + "unit": "px", + "value": 10.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 0.0 + }, + "margin-bottom": { + "unit": "px", + "value": -19.0 + }, + "margin-end": "auto", + "margin-vertical": { + "unit": "px", + "value": 1.0 + }, + "overflow": "hidden", + "padding-bottom": { + "unit": "px", + "value": 24.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-left": { + "unit": "px", + "value": 12.0 + }, + "padding-right": { + "unit": "px", + "value": 12.0 + }, + "padding-top": { + "unit": "px", + "value": 6.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-start", + "min-width": { + "unit": "px", + "value": 1.0 + }, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "pct", + "value": 100.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 0.0 + }, + "margin-end": "auto", + "margin-vertical": { + "unit": "px", + "value": 1.0 + }, + "overflow": "hidden", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 4.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 0.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "height": { + "unit": "pct", + "value": 100.0 + }, + "position-left": { + "unit": "pct", + "value": 100.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "margin-top": { + "unit": "px", + "value": -1.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 14.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 14.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-start": { + "unit": "px", + "value": 0.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "justify-content": "center", + "padding-start": { + "unit": "px", + "value": 4.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 2.0 + }, + "margin-end": { + "unit": "px", + "value": -4.0 + }, + "margin-top": { + "unit": "px", + "value": -5.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 4.0 + }, + "padding-vertical": { + "unit": "px", + "value": 3.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "justify-content": "flex-end" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-start", + "min-width": { + "unit": "px", + "value": 1.0 + }, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "max-width": { + "unit": "pct", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 0.0, + "flex-direction": "row", + "padding-right": { + "unit": "px", + "value": 0.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-grow": 1.0, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 6.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 28.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 23.0 + }, + "padding-end": { + "unit": "px", + "value": 12.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 16.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 16.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-right": { + "unit": "px", + "value": 2.0 + }, + "padding-bottom": { + "unit": "px", + "value": 3.0 + } + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "flex-direction": "row", + "margin-end": "auto", + "margin-start": { + "unit": "px", + "value": 10.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 0.0 + }, + "margin-bottom": { + "unit": "px", + "value": -19.0 + }, + "margin-end": "auto", + "margin-vertical": { + "unit": "px", + "value": 1.0 + }, + "overflow": "hidden", + "padding-bottom": { + "unit": "px", + "value": 24.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-left": { + "unit": "px", + "value": 12.0 + }, + "padding-right": { + "unit": "px", + "value": 12.0 + }, + "padding-top": { + "unit": "px", + "value": 6.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-start", + "min-width": { + "unit": "px", + "value": 1.0 + }, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "pct", + "value": 100.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 0.0 + }, + "margin-end": "auto", + "margin-vertical": { + "unit": "px", + "value": 1.0 + }, + "overflow": "hidden", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 4.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 0.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "height": { + "unit": "pct", + "value": 100.0 + }, + "position-left": { + "unit": "pct", + "value": 100.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "margin-top": { + "unit": "px", + "value": -1.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 14.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 14.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-start": { + "unit": "px", + "value": 0.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 2.0 + }, + "margin-end": { + "unit": "px", + "value": -4.0 + }, + "margin-top": { + "unit": "px", + "value": -5.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 4.0 + }, + "padding-vertical": { + "unit": "px", + "value": 3.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "justify-content": "flex-end" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-start", + "min-width": { + "unit": "px", + "value": 1.0 + }, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "max-width": { + "unit": "pct", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 0.0, + "flex-direction": "row", + "padding-right": { + "unit": "px", + "value": 0.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-grow": 1.0, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 6.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "flex-wrap": "wrap" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "stretch", + "flex-direction": "row", + "justify-content": "center", + "padding-all": { + "unit": "px", + "value": 5.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 28.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 23.0 + }, + "padding-end": { + "unit": "px", + "value": 12.0 + } + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "flex-direction": "row", + "margin-end": "auto", + "margin-start": { + "unit": "px", + "value": 10.0 + } + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 2.0 + }, + "margin-start": { + "unit": "px", + "value": 12.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 0.0 + }, + "margin-end": "auto", + "margin-vertical": { + "unit": "px", + "value": 1.0 + }, + "overflow": "hidden", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 4.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 0.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "height": { + "unit": "pct", + "value": 100.0 + }, + "position-left": { + "unit": "pct", + "value": 100.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "margin-top": { + "unit": "px", + "value": -1.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 14.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 14.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-start": { + "unit": "px", + "value": 0.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 2.0 + }, + "margin-end": { + "unit": "px", + "value": -4.0 + }, + "margin-top": { + "unit": "px", + "value": -5.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 4.0 + }, + "padding-vertical": { + "unit": "px", + "value": 3.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "justify-content": "flex-end" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-start", + "min-width": { + "unit": "px", + "value": 1.0 + }, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "max-width": { + "unit": "pct", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 0.0, + "flex-direction": "row", + "padding-right": { + "unit": "px", + "value": 0.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-grow": 1.0, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 6.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 28.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 1.0 + }, + "padding-end": { + "unit": "px", + "value": 12.0 + } + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "flex-direction": "row", + "margin-end": "auto", + "margin-start": { + "unit": "px", + "value": 10.0 + } + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 2.0 + }, + "margin-start": { + "unit": "px", + "value": 12.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 0.0 + }, + "margin-end": "auto", + "margin-vertical": { + "unit": "px", + "value": 1.0 + }, + "overflow": "hidden", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 4.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 0.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "height": { + "unit": "pct", + "value": 100.0 + }, + "position-left": { + "unit": "pct", + "value": 100.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "margin-top": { + "unit": "px", + "value": -1.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 14.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 14.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-start": { + "unit": "px", + "value": 0.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 2.0 + }, + "margin-end": { + "unit": "px", + "value": -4.0 + }, + "margin-top": { + "unit": "px", + "value": -5.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 4.0 + }, + "padding-vertical": { + "unit": "px", + "value": 3.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "justify-content": "flex-end" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-start", + "min-width": { + "unit": "px", + "value": 1.0 + }, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "max-width": { + "unit": "pct", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 0.0, + "flex-direction": "row", + "padding-right": { + "unit": "px", + "value": 0.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "max-height": { + "unit": "px", + "value": 280.0 + }, + "overflow": "hidden", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "max-height": { + "unit": "px", + "value": 280.0 + }, + "overflow": "hidden", + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-end": "auto", + "margin-vertical": { + "unit": "px", + "value": 1.0 + }, + "max-height": { + "unit": "pct", + "value": 100.0 + }, + "max-width": { + "unit": "pct", + "value": 100.0 + }, + "overflow": "hidden", + "padding-all": { + "unit": "px", + "value": 0.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 4.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 0.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "height": { + "unit": "pct", + "value": 100.0 + }, + "position-left": { + "unit": "pct", + "value": 100.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-start", + "min-width": { + "unit": "px", + "value": 1.0 + }, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "max-width": { + "unit": "pct", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 0.0, + "flex-direction": "row", + "padding-right": { + "unit": "px", + "value": 0.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 0.0 + }, + "margin-end": "auto", + "margin-vertical": { + "unit": "px", + "value": 1.0 + }, + "overflow": "hidden", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 4.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 0.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "height": { + "unit": "pct", + "value": 100.0 + }, + "position-left": { + "unit": "pct", + "value": 100.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-start", + "min-width": { + "unit": "px", + "value": 1.0 + }, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "max-width": { + "unit": "pct", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 0.0, + "flex-direction": "row", + "padding-right": { + "unit": "px", + "value": 0.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-grow": 1.0, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 6.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "flex-wrap": "wrap" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "stretch", + "flex-direction": "row", + "justify-content": "center", + "padding-all": { + "unit": "px", + "value": 5.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 28.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 23.0 + }, + "padding-end": { + "unit": "px", + "value": 12.0 + } + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "flex-direction": "row", + "margin-end": "auto", + "margin-start": { + "unit": "px", + "value": 10.0 + } + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 2.0 + }, + "margin-start": { + "unit": "px", + "value": 12.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 0.0 + }, + "margin-end": "auto", + "margin-vertical": { + "unit": "px", + "value": 1.0 + }, + "overflow": "hidden", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 4.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 0.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "height": { + "unit": "pct", + "value": 100.0 + }, + "position-left": { + "unit": "pct", + "value": 100.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-start", + "min-width": { + "unit": "px", + "value": 1.0 + }, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "pct", + "value": 100.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "pct", + "value": 100.0 + }, + "overflow": "hidden", + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "stretch", + "height": { + "unit": "pct", + "value": 100.0 + }, + "justify-content": "center", + "overflow": "hidden", + "position-type": "relative" + } + }, + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 138.05503845214844 + }, + "max-height": { + "unit": "px", + "value": 198.0 + }, + "max-width": { + "unit": "pct", + "value": 100.0 + }, + "overflow": "hidden", + "position-type": "absolute", + "width": { + "unit": "px", + "value": 264.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "align-self": "stretch", + "height": { + "unit": "px", + "value": 138.05503845214844 + }, + "justify-content": "center", + "overflow": "hidden" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0 + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0 + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + }, + { + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "align-self": "flex-start", + "flex-direction": "row", + "justify-content": "center", + "padding-top": { + "unit": "px", + "value": 0.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "padding-right": { + "unit": "px", + "value": 4.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "padding-bottom": { + "unit": "px", + "value": 0.0 + }, + "width": { + "unit": "pct", + "value": 100.0 + } + } + }, + { + "config": { + "errata": "all" + }, + "style": { + "flex-grow": 1.0, + "justify-content": "flex-end" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "padding-all": { + "unit": "px", + "value": 12.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-all": { + "unit": "px", + "value": 0.0 + }, + "max-width": { + "unit": "px", + "value": 264.0 + }, + "min-width": { + "unit": "px", + "value": 157.0 + }, + "overflow": "hidden", + "padding-all": { + "unit": "px", + "value": 0.0 + }, + "width": { + "unit": "px", + "value": 264.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-end": "auto", + "margin-vertical": { + "unit": "px", + "value": 1.0 + }, + "overflow": "hidden", + "padding-all": { + "unit": "px", + "value": 0.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "margin-top": { + "unit": "px", + "value": -1.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 14.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 14.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-start": { + "unit": "px", + "value": 0.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 2.0 + }, + "margin-end": { + "unit": "px", + "value": -4.0 + }, + "margin-top": { + "unit": "px", + "value": -5.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 4.0 + }, + "padding-vertical": { + "unit": "px", + "value": 3.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "justify-content": "flex-end" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-start", + "min-width": { + "unit": "px", + "value": 1.0 + }, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "max-width": { + "unit": "pct", + "value": 85.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 0.0, + "flex-direction": "row", + "padding-right": { + "unit": "px", + "value": 0.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-grow": 1.0, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 6.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "flex-wrap": "wrap" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "stretch", + "flex-direction": "row", + "justify-content": "center", + "padding-all": { + "unit": "px", + "value": 5.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 28.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-end", + "margin-bottom": { + "unit": "px", + "value": 1.0 + }, + "padding-end": { + "unit": "px", + "value": 12.0 + } + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "flex-direction": "row", + "margin-end": "auto", + "margin-start": { + "unit": "px", + "value": 10.0 + } + } + }, + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 2.0 + }, + "margin-start": { + "unit": "px", + "value": 12.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 0.0 + }, + "margin-end": "auto", + "margin-vertical": { + "unit": "px", + "value": 1.0 + }, + "overflow": "hidden", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 8.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 4.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-horizontal": { + "unit": "px", + "value": 0.0 + }, + "margin-vertical": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "height": { + "unit": "pct", + "value": 100.0 + }, + "position-left": { + "unit": "pct", + "value": 100.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "flex-start", + "min-width": { + "unit": "px", + "value": 1.0 + }, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "max-width": { + "unit": "pct", + "value": 60.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 0.0, + "flex-direction": "row", + "padding-right": { + "unit": "px", + "value": 0.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-grow": 1.0, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "padding-horizontal": { + "unit": "px", + "value": 12.0 + }, + "padding-vertical": { + "unit": "px", + "value": 6.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 24.0 + }, + "justify-content": "center", + "overflow": "hidden", + "width": { + "unit": "px", + "value": 24.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "justify-content": "center", + "padding-all": { + "unit": "px", + "value": 4.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "margin-bottom": { + "unit": "px", + "value": 6.0 + }, + "margin-top": { + "unit": "px", + "value": 40.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "padding-top": { + "unit": "px", + "value": 46.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-grow": 1.0, + "flex-shrink": 1.0 + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-grow": 1.0 + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-grow": 1.0, + "flex-shrink": 1.0, + "height": { + "unit": "pct", + "value": 100.0 + }, + "margin-top": { + "unit": "px", + "value": 0.0 + }, + "overflow": "scroll" + } + } + ], + "config": { + "errata": "all" + }, + "style": null + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 28.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 0.0 + }, + "height": { + "unit": "px", + "value": 36.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 36.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "border-all": { + "unit": "px", + "value": 1.0 + }, + "height": { + "unit": "px", + "value": 36.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 36.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-self": "center", + "position-bottom": { + "unit": "px", + "value": 15.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "margin-start": { + "unit": "px", + "value": 5.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0 + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0 + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 28.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 36.0 + }, + "justify-content": "center", + "margin-start": { + "unit": "px", + "value": 17.0 + }, + "padding-end": { + "unit": "px", + "value": 17.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "margin-start": { + "unit": "px", + "value": 8.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "flex-grow": 1.0, + "flex-shrink": 1.0, + "overflow": "scroll" + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "border-all": { + "unit": "px", + "value": 0.0 + }, + "max-height": { + "unit": "px", + "value": 200.0 + }, + "padding-horizontal": { + "unit": "px", + "value": 10.0 + }, + "padding-top": { + "unit": "px", + "value": 5.0 + }, + "padding-vertical": { + "unit": "px", + "value": 6.0 + }, + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0, + "flex-direction": "row", + "padding-start": { + "unit": "px", + "value": 1.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 28.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-left": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-top": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + }, + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 28.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "margin-end": { + "unit": "px", + "value": 1.0 + }, + "margin-start": { + "unit": "px", + "value": 3.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "align-self": "flex-end", + "flex-direction": "row", + "margin-start": { + "unit": "px", + "value": 8.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "flex-direction": "row", + "margin-vertical": { + "unit": "px", + "value": 2.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "border-all": { + "unit": "px", + "value": 0.0 + }, + "flex": 1.0, + "margin-end": { + "unit": "px", + "value": 10.0 + }, + "min-height": { + "unit": "px", + "value": 32.0 + } + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": { + "padding-left": { + "unit": "px", + "value": 1.5 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 32.0 + }, + "justify-content": "center", + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 32.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "height": { + "unit": "px", + "value": 36.0 + }, + "justify-content": "center", + "margin-left": { + "unit": "px", + "value": 4.0 + }, + "width": { + "unit": "px", + "value": 32.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "flex-end", + "flex-direction": "row", + "padding-end": { + "unit": "px", + "value": 10.0 + }, + "padding-vertical": { + "unit": "px", + "value": 10.0 + } + } + }, + { + "config": { + "errata": "all" + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0 + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0 + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0 + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-grow": 1.0, + "flex-shrink": 1.0 + } + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 22.0 + }, + "overflow": "hidden", + "width": { + "unit": "px", + "value": 22.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "justify-content": "center" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "height": { + "unit": "px", + "value": 28.0 + }, + "position-top": { + "unit": "px", + "value": 4.0 + }, + "width": { + "unit": "px", + "value": 28.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "justify-content": "center", + "position-end": { + "unit": "px", + "value": 40.0 + }, + "position-top": { + "unit": "px", + "value": 5.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-direction": "row", + "height": { + "unit": "pct", + "value": 100.0 + }, + "width": { + "unit": "pct", + "value": 100.0 + } + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0 + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0 + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex-grow": 1.0, + "position-type": "relative" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0 + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0 + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0 + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0 + } + }, + { + "children": [ + { + "config": { + "errata": "all" + }, + "node": { + "has-custom-measure": true + }, + "style": null + } + ], + "config": { + "errata": "all" + }, + "style": { + "align-items": "center", + "justify-content": "center", + "padding-all": { + "unit": "px", + "value": 2.0 + }, + "position-bottom": { + "unit": "px", + "value": 0.0 + }, + "position-right": { + "unit": "px", + "value": 0.0 + }, + "position-type": "absolute" + } + } + ], + "config": { + "errata": "all" + }, + "style": { + "flex": 1.0 + } + } + ], + "config": { + "errata": "all", + "point-scale-factor": 2.0 + }, + "style": { + "max-height": { + "unit": "px", + "value": 768.0 + }, + "max-width": { + "unit": "px", + "value": 1024.0 + }, + "min-height": { + "unit": "px", + "value": 768.0 + }, + "min-width": { + "unit": "px", + "value": 1024.0 + } + } + } +} \ No newline at end of file diff --git a/capture/CaptureTree.cpp b/capture/CaptureTree.cpp index a1a1a29f8b..9ead54c451 100644 --- a/capture/CaptureTree.cpp +++ b/capture/CaptureTree.cpp @@ -6,6 +6,7 @@ */ #include +#include #include #include @@ -22,12 +23,40 @@ static void captureTree( file << serializedTree; } +static std::vector& currentSerializedMeasureFuncVec() { + static thread_local std::vector + currentSerializedMeasureFuncVec; + return currentSerializedMeasureFuncVec; +} + +/* + * Capturing a tree often means that we capturing multiple serial layouts over + * the course of the capture. Because of this, we need to make sure that we do + * a full layout pass with no caching. If we do not do this there is a chance + * we do not capture measure functions that were called and cached in previous + * layouts. Missing these captures would lead to inaccurate benchmarking where + * we do not have cached state. + * + * TODO: Dirty entire tree not just measure function nodes + */ +static void dirtyTree(YGNodeRef node) { + if (YGNodeHasMeasureFunc(node)) { + YGNodeMarkDirty(node); + } + + const size_t childCount = YGNodeGetChildCount(node); + for (size_t i = 0; i < childCount; i++) { + dirtyTree(YGNodeGetChild(node, i)); + } +} + void YGNodeCalculateLayoutWithCapture( YGNodeRef node, float availableWidth, float availableHeight, YGDirection ownerDirection, const std::filesystem::path& path) { + dirtyTree(node); json j; serializeLayoutInputs(j, availableWidth, availableHeight, ownerDirection); serializeTree( @@ -35,8 +64,31 @@ void YGNodeCalculateLayoutWithCapture( node, PrintOptions::Style | PrintOptions::Children | PrintOptions::Config | PrintOptions::Node); - captureTree(j.dump(2), path); + YGNodeCalculateLayout(node, availableWidth, availableHeight, ownerDirection); + + serializeMeasureFuncResults(j, currentSerializedMeasureFuncVec()); + // TODO: It is possible to have a measure function call layout again if, e.g., + // views are nested in text. Need to be able to resolve this special case. + currentSerializedMeasureFuncVec().clear(); + captureTree(j.dump(2), path); +} + +void captureMeasureFunc( + float width, + YGMeasureMode widthMode, + float height, + YGMeasureMode heightMode, + YGSize output, + std::chrono::steady_clock::duration durationNs) { + currentSerializedMeasureFuncVec().push_back(SerializedMeasureFunc{ + width, + widthMode, + height, + heightMode, + output.width, + output.height, + durationNs.count()}); } } // namespace facebook::yoga diff --git a/capture/CaptureTree.h b/capture/CaptureTree.h index c12d3c782f..7ea2cad522 100644 --- a/capture/CaptureTree.h +++ b/capture/CaptureTree.h @@ -13,6 +13,16 @@ namespace facebook::yoga { +struct SerializedMeasureFunc { + float inputWidth{0.0f}; + YGMeasureMode widthMode{YGMeasureModeUndefined}; + float inputHeight{0.0}; + YGMeasureMode heightMode{YGMeasureModeUndefined}; + float outputWidth{0.0f}; + float outputHeight{0.0f}; + std::chrono::steady_clock::duration::rep durationNs; +}; + void YGNodeCalculateLayoutWithCapture( YGNodeRef node, float availableWidth, @@ -20,4 +30,12 @@ void YGNodeCalculateLayoutWithCapture( YGDirection ownerDirection, const std::filesystem::path& path); +void captureMeasureFunc( + float width, + YGMeasureMode widthMode, + float height, + YGMeasureMode heightMode, + YGSize output, + std::chrono::steady_clock::duration durationNs); + } // namespace facebook::yoga diff --git a/capture/NodeToString.cpp b/capture/NodeToString.cpp index 675b7e370a..0433abd756 100644 --- a/capture/NodeToString.cpp +++ b/capture/NodeToString.cpp @@ -114,13 +114,13 @@ static void appendEdges( (*Field)(defaultNode, YGEdgeHorizontal)); } -YGValue borderFloatToYGValue(YGNodeRef node, YGEdge edge) { +static YGValue borderFloatToYGValue(YGNodeRef node, YGEdge edge) { float val = YGNodeStyleGetBorder(node, edge); YGUnit unit = YGFloatIsUndefined(val) ? YGUnitUndefined : YGUnitPoint; return YGValue{val, unit}; } -void serializeTree(json& j, YGNodeRef node, PrintOptions options) { +static void serializeTreeImpl(json& j, YGNodeRef node, PrintOptions options) { if ((options & PrintOptions::Layout) == PrintOptions::Layout) { j["layout"]["width"] = YGNodeStyleGetWidth(node).value; j["layout"]["height"] = YGNodeStyleGetHeight(node).value; @@ -302,11 +302,15 @@ void serializeTree(json& j, YGNodeRef node, PrintOptions options) { childCount > 0) { for (size_t i = 0; i < childCount; i++) { j["children"].push_back({}); - serializeTree(j["children"][i], YGNodeGetChild(node, i), options); + serializeTreeImpl(j["children"][i], YGNodeGetChild(node, i), options); } } } +void serializeTree(json& j, YGNodeRef node, PrintOptions options) { + serializeTreeImpl(j["tree"], node, options); +} + void serializeLayoutInputs( json& j, float availableWidth, @@ -319,4 +323,19 @@ void serializeLayoutInputs( }; } +void serializeMeasureFuncResults( + json& j, + std::vector& measureFuncs) { + for (auto measureFunc : measureFuncs) { + j["measure-funcs"].push_back( + {{"width", measureFunc.inputWidth}, + {"width-mode", YGMeasureModeToString(measureFunc.widthMode)}, + {"height", measureFunc.inputHeight}, + {"height-mode", YGMeasureModeToString(measureFunc.heightMode)}, + {"output-width", measureFunc.outputWidth}, + {"output-height", measureFunc.outputHeight}, + {"duration-ns", measureFunc.durationNs}}); + } +} + } // namespace facebook::yoga diff --git a/capture/NodeToString.h b/capture/NodeToString.h index b1ceb62bf3..a7abc9cb87 100644 --- a/capture/NodeToString.h +++ b/capture/NodeToString.h @@ -7,8 +7,10 @@ #pragma once +#include #include +#include #include #include @@ -31,4 +33,8 @@ void serializeLayoutInputs( float availableHeight, YGDirection ownerDirection); +void serializeMeasureFuncResults( + nlohmann::json& j, + std::vector& measureFuncs); + } // namespace facebook::yoga