From f591475f8579aa7c9136fd6576ed879872840e40 Mon Sep 17 00:00:00 2001 From: Sara Valderrama Date: Thu, 1 Aug 2019 21:58:40 -0700 Subject: [PATCH] A few mini-fixes for the accessibility layout inspector Summary: - fix mutual selection of elements in ax and non-ax tree (simplifies linkedNode logic as well) - remove unneeded extraInfo attributes (focused, nonAXwithAXchild, & hasAXNode were not/no longer being used) - use 50/50 fixed width view for trees when both are visible Reviewed By: jknoxville Differential Revision: D16390355 fbshipit-source-id: bbf9ea887f8f1035df8b4b0562ddcc4de291f004 --- .../inspector/InspectorFlipperPlugin.java | 2 +- .../descriptors/ApplicationDescriptor.java | 3 +- .../descriptors/FragmentDescriptor.java | 2 +- .../inspector/descriptors/ViewDescriptor.java | 7 ++-- .../litho/DebugComponentDescriptor.java | 4 +- .../inspector/InspectorFlipperPluginTest.java | 4 +- .../headlessIntegrationTests.js.snap | 38 +++++++++---------- .../__tests__/headlessIntegrationTests.js | 6 +-- src/plugins/layout/Inspector.js | 32 ++++++++-------- src/plugins/layout/index.js | 32 ++++++++-------- .../elements-inspector/ElementsInspector.js | 33 ++++++++-------- 11 files changed, 81 insertions(+), 82 deletions(-) diff --git a/android/src/main/java/com/facebook/flipper/plugins/inspector/InspectorFlipperPlugin.java b/android/src/main/java/com/facebook/flipper/plugins/inspector/InspectorFlipperPlugin.java index 546bf41a9..402c85f96 100644 --- a/android/src/main/java/com/facebook/flipper/plugins/inspector/InspectorFlipperPlugin.java +++ b/android/src/main/java/com/facebook/flipper/plugins/inspector/InspectorFlipperPlugin.java @@ -551,7 +551,7 @@ public class InspectorFlipperPlugin implements FlipperPlugin { private boolean hasAXNode(FlipperObject node) { FlipperObject extraInfo = node.getObject("extraInfo"); - return extraInfo != null && extraInfo.getBoolean("hasAXNode"); + return extraInfo != null && extraInfo.getBoolean("linkedNode"); } public SearchResultNode searchTree(String query, Object obj, boolean axEnabled) throws Exception { diff --git a/android/src/main/java/com/facebook/flipper/plugins/inspector/descriptors/ApplicationDescriptor.java b/android/src/main/java/com/facebook/flipper/plugins/inspector/descriptors/ApplicationDescriptor.java index 75bbfe447..cbd8f300f 100644 --- a/android/src/main/java/com/facebook/flipper/plugins/inspector/descriptors/ApplicationDescriptor.java +++ b/android/src/main/java/com/facebook/flipper/plugins/inspector/descriptors/ApplicationDescriptor.java @@ -216,7 +216,8 @@ public class ApplicationDescriptor extends NodeDescriptor { @Override public FlipperObject getExtraInfo(ApplicationWrapper node) { - return new FlipperObject.Builder().put("hasAXNode", true).build(); + // Application node is it's own linkedNode because it shows up in both the ax and non-ax tree + return new FlipperObject.Builder().put("linkedNode", getId(node)).build(); } @Override diff --git a/android/src/main/java/com/facebook/flipper/plugins/inspector/descriptors/FragmentDescriptor.java b/android/src/main/java/com/facebook/flipper/plugins/inspector/descriptors/FragmentDescriptor.java index 5a9c4ce9a..72a42ce89 100644 --- a/android/src/main/java/com/facebook/flipper/plugins/inspector/descriptors/FragmentDescriptor.java +++ b/android/src/main/java/com/facebook/flipper/plugins/inspector/descriptors/FragmentDescriptor.java @@ -77,7 +77,7 @@ public class FragmentDescriptor extends NodeDescriptor { @Override public FlipperObject getExtraInfo(Fragment node) { - return new FlipperObject.Builder().put("nonAXWithAXChild", true).build(); + return new FlipperObject.Builder().put("expandWithParent", true).build(); } @Nullable diff --git a/android/src/main/java/com/facebook/flipper/plugins/inspector/descriptors/ViewDescriptor.java b/android/src/main/java/com/facebook/flipper/plugins/inspector/descriptors/ViewDescriptor.java index 143ef2a60..c2779a49f 100644 --- a/android/src/main/java/com/facebook/flipper/plugins/inspector/descriptors/ViewDescriptor.java +++ b/android/src/main/java/com/facebook/flipper/plugins/inspector/descriptors/ViewDescriptor.java @@ -445,10 +445,9 @@ public class ViewDescriptor extends NodeDescriptor { @Override public FlipperObject getExtraInfo(View node) { - return new FlipperObject.Builder() - .put("focused", AccessibilityUtil.isAXFocused(node)) - .put("hasAXNode", true) - .build(); + // Views of all kinds are their own linked node because they show up in both the ax and non-ax + // tree + return new FlipperObject.Builder().put("linkedNode", getId(node)).build(); } @Nullable diff --git a/android/src/main/java/com/facebook/flipper/plugins/litho/DebugComponentDescriptor.java b/android/src/main/java/com/facebook/flipper/plugins/litho/DebugComponentDescriptor.java index 6a6c08b7f..9c785fae5 100644 --- a/android/src/main/java/com/facebook/flipper/plugins/litho/DebugComponentDescriptor.java +++ b/android/src/main/java/com/facebook/flipper/plugins/litho/DebugComponentDescriptor.java @@ -307,13 +307,13 @@ public class DebugComponentDescriptor extends NodeDescriptor { if (hostView != null) { try { - extraInfo.put("linkedAXNode", descriptor.getId(hostView)); + extraInfo.put("linkedNode", descriptor.getId(hostView)); } catch (Exception ignored) { // doesn't have linked node descriptor } } else if (lithoView != null) { try { - extraInfo.put("linkedAXNode", descriptor.getId(lithoView)); + extraInfo.put("linkedNode", descriptor.getId(lithoView)).put("expandWithParent", true); } catch (Exception ignored) { // doesn't add linked node descriptor } diff --git a/android/src/test/java/com/facebook/flipper/plugins/inspector/InspectorFlipperPluginTest.java b/android/src/test/java/com/facebook/flipper/plugins/inspector/InspectorFlipperPluginTest.java index b742a96b7..a6dfda231 100644 --- a/android/src/test/java/com/facebook/flipper/plugins/inspector/InspectorFlipperPluginTest.java +++ b/android/src/test/java/com/facebook/flipper/plugins/inspector/InspectorFlipperPluginTest.java @@ -101,7 +101,9 @@ public class InspectorFlipperPluginTest { .put("children", new FlipperArray.Builder().put("test")) .put("attributes", new FlipperArray.Builder()) .put("decoration", (String) null) - .put("extraInfo", new FlipperObject.Builder().put("hasAXNode", true)) + .put( + "extraInfo", + new FlipperObject.Builder().put("linkedNode", "com.facebook.flipper")) .build())); } diff --git a/headless-tests/__tests__/__snapshots__/headlessIntegrationTests.js.snap b/headless-tests/__tests__/__snapshots__/headlessIntegrationTests.js.snap index 1c6f3c686..e18ff641b 100644 --- a/headless-tests/__tests__/__snapshots__/headlessIntegrationTests.js.snap +++ b/headless-tests/__tests__/__snapshots__/headlessIntegrationTests.js.snap @@ -2,11 +2,11 @@ exports[`Sample app layout hierarchy matches snapshot 1`] = ` Array [ - "{\\"attributes\\":[],\\"children\\":[\\"PLACEHOLDER\\",\\"PLACEHOLDER\\"],\\"data\\":{\\"View\\":{\\"alpha\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"background\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"bounds\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"elevation\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}},\\"foreground\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"height\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"keyedTags\\":{},\\"layoutDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"layoutParams\\":{\\"gravity\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"margin\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"padding\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"pivot\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"position\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"rotation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"scale\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"state\\":{\\"activated\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"enabled\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"focused\\":{},\\"selected\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false}},\\"tag\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"}},\\"textAlignment\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"textDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"translation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"visibility\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"width\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}}},\\"ViewGroup\\":{\\"clipChildren\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"clipToPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"layoutMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LAYOUT_MODE_CLIP_BOUNDS\\"}}},\\"extraInfo\\":{\\"focused\\":false,\\"hasAXNode\\":true},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"LinearLayout\\"}", - "{\\"attributes\\":[],\\"children\\":[\\"PLACEHOLDER\\"],\\"data\\":{\\"LithoView\\":{\\"mountbounds\\":\\"PLACEHOLDER\\"},\\"View\\":{\\"alpha\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"background\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"bounds\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"elevation\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}},\\"foreground\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"height\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"keyedTags\\":{},\\"layoutDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"layoutParams\\":{\\"gravity\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"margin\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"padding\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"pivot\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"position\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"rotation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"scale\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"state\\":{\\"activated\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"enabled\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"focused\\":{},\\"selected\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false}},\\"tag\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"}},\\"textAlignment\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"textDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"translation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"visibility\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"width\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}}},\\"ViewGroup\\":{\\"clipChildren\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"clipToPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"layoutMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LAYOUT_MODE_CLIP_BOUNDS\\"}}},\\"extraInfo\\":{\\"focused\\":false,\\"hasAXNode\\":true},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"LithoView\\"}", - "{\\"attributes\\":[],\\"children\\":[\\"PLACEHOLDER\\"],\\"data\\":{\\"View\\":{\\"alpha\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"background\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"bounds\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"elevation\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}},\\"foreground\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"height\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"keyedTags\\":{},\\"layoutDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"layoutParams\\":{\\"height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"padding\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"pivot\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"position\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"rotation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"scale\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"state\\":{\\"activated\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"enabled\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"focused\\":{},\\"selected\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false}},\\"tag\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"}},\\"textAlignment\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"textDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"translation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"visibility\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"width\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}}},\\"ViewGroup\\":{\\"clipChildren\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"clipToPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"layoutMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LAYOUT_MODE_CLIP_BOUNDS\\"}}},\\"extraInfo\\":{\\"focused\\":false,\\"hasAXNode\\":true},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"DecorView\\"}", - "{\\"attributes\\":[],\\"children\\":[\\"PLACEHOLDER\\"],\\"data\\":{\\"View\\":{\\"alpha\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"background\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"bounds\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"elevation\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}},\\"foreground\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"height\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"keyedTags\\":{},\\"layoutDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"layoutParams\\":{\\"gravity\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"margin\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"weight\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"padding\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"pivot\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"position\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"rotation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"scale\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"state\\":{\\"activated\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"enabled\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"focused\\":{},\\"selected\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false}},\\"tag\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"}},\\"textAlignment\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"textDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"translation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"visibility\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"width\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}}},\\"ViewGroup\\":{\\"clipChildren\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"clipToPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"layoutMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LAYOUT_MODE_CLIP_BOUNDS\\"}}},\\"extraInfo\\":{\\"focused\\":false,\\"hasAXNode\\":true},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"FrameLayout\\"}", - "{\\"attributes\\":[],\\"children\\":[\\"PLACEHOLDER\\"],\\"data\\":{},\\"extraInfo\\":{\\"hasAXNode\\":true},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"com.facebook.flipper.sample\\"}", + "{\\"attributes\\":[],\\"children\\":[\\"PLACEHOLDER\\",\\"PLACEHOLDER\\"],\\"data\\":{\\"View\\":{\\"alpha\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"background\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"bounds\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"elevation\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}},\\"foreground\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"height\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"keyedTags\\":{},\\"layoutDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"layoutParams\\":{\\"gravity\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"margin\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"padding\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"pivot\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"position\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"rotation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"scale\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"state\\":{\\"activated\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"enabled\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"focused\\":{},\\"selected\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false}},\\"tag\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"}},\\"textAlignment\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"textDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"translation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"visibility\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"width\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}}},\\"ViewGroup\\":{\\"clipChildren\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"clipToPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"layoutMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LAYOUT_MODE_CLIP_BOUNDS\\"}}},\\"extraInfo\\":{\\"linkedNode\\":\\"PLACEHOLDER\\"},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"LinearLayout\\"}", + "{\\"attributes\\":[],\\"children\\":[\\"PLACEHOLDER\\"],\\"data\\":{\\"LithoView\\":{\\"mountbounds\\":\\"PLACEHOLDER\\"},\\"View\\":{\\"alpha\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"background\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"bounds\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"elevation\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}},\\"foreground\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"height\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"keyedTags\\":{},\\"layoutDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"layoutParams\\":{\\"gravity\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"margin\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"padding\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"pivot\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"position\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"rotation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"scale\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"state\\":{\\"activated\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"enabled\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"focused\\":{},\\"selected\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false}},\\"tag\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"}},\\"textAlignment\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"textDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"translation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"visibility\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"width\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}}},\\"ViewGroup\\":{\\"clipChildren\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"clipToPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"layoutMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LAYOUT_MODE_CLIP_BOUNDS\\"}}},\\"extraInfo\\":{\\"linkedNode\\":\\"PLACEHOLDER\\"},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"LithoView\\"}", + "{\\"attributes\\":[],\\"children\\":[\\"PLACEHOLDER\\"],\\"data\\":{\\"View\\":{\\"alpha\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"background\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"bounds\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"elevation\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}},\\"foreground\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"height\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"keyedTags\\":{},\\"layoutDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"layoutParams\\":{\\"height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"padding\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"pivot\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"position\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"rotation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"scale\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"state\\":{\\"activated\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"enabled\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"focused\\":{},\\"selected\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false}},\\"tag\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"}},\\"textAlignment\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"textDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"translation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"visibility\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"width\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}}},\\"ViewGroup\\":{\\"clipChildren\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"clipToPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"layoutMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LAYOUT_MODE_CLIP_BOUNDS\\"}}},\\"extraInfo\\":{\\"linkedNode\\":\\"PLACEHOLDER\\"},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"DecorView\\"}", + "{\\"attributes\\":[],\\"children\\":[\\"PLACEHOLDER\\"],\\"data\\":{\\"View\\":{\\"alpha\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"background\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"bounds\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"elevation\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}},\\"foreground\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"height\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"keyedTags\\":{},\\"layoutDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"layoutParams\\":{\\"gravity\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"margin\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"weight\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"padding\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"pivot\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"position\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"rotation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"scale\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"state\\":{\\"activated\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"enabled\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"focused\\":{},\\"selected\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false}},\\"tag\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"}},\\"textAlignment\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"textDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"translation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"visibility\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"width\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}}},\\"ViewGroup\\":{\\"clipChildren\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"clipToPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"layoutMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LAYOUT_MODE_CLIP_BOUNDS\\"}}},\\"extraInfo\\":{\\"linkedNode\\":\\"PLACEHOLDER\\"},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"FrameLayout\\"}", + "{\\"attributes\\":[],\\"children\\":[\\"PLACEHOLDER\\"],\\"data\\":{},\\"extraInfo\\":{\\"linkedNode\\":\\"PLACEHOLDER\\"},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"com.facebook.flipper.sample\\"}", "{\\"attributes\\":[],\\"children\\":[\\"PLACEHOLDER\\"],\\"data\\":{},\\"extraInfo\\":{},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"MainActivity\\"}", "{\\"attributes\\":[],\\"children\\":[\\"PLACEHOLDER\\"],\\"data\\":{},\\"extraInfo\\":{},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"PhoneWindow\\"}", "{\\"attributes\\":[],\\"children\\":[],\\"data\\":{\\"Drawable\\":{\\"alpha\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}}},\\"extraInfo\\":{},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"TextDrawable\\"}", @@ -14,19 +14,19 @@ Array [ "{\\"attributes\\":[],\\"children\\":[],\\"data\\":{\\"Drawable\\":{\\"alpha\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}}},\\"extraInfo\\":{},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"TextDrawable\\"}", "{\\"attributes\\":[],\\"children\\":[],\\"data\\":{\\"Drawable\\":{\\"alpha\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}}},\\"extraInfo\\":{},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"TextDrawable\\"}", "{\\"attributes\\":[],\\"children\\":[],\\"data\\":{\\"Drawable\\":{\\"alpha\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}}},\\"extraInfo\\":{},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"TextDrawable\\"}", - "{\\"attributes\\":[],\\"children\\":[],\\"data\\":{\\"TextView\\":{\\"text\\":{\\"__mutable__\\":true,\\"__type__\\":\\"text\\",\\"value\\":\\"Flipper\\"},\\"textColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":-570425344},\\"textSize\\":{\\"__mutable__\\":true,\\"__type__\\":\\"number\\",\\"value\\":20}},\\"View\\":{\\"alpha\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"background\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"bounds\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"elevation\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}},\\"foreground\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"height\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"keyedTags\\":{},\\"layoutDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"layoutParams\\":{\\"height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"margin\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"padding\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"pivot\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"position\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"rotation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"scale\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"state\\":{\\"activated\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"enabled\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"focused\\":{},\\"selected\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false}},\\"tag\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"}},\\"textAlignment\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"textDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"translation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"visibility\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"width\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}}}},\\"extraInfo\\":{\\"focused\\":false,\\"hasAXNode\\":true},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"AppCompatTextView\\"}", - "{\\"attributes\\":[],\\"children\\":[],\\"data\\":{\\"View\\":{\\"alpha\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"background\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"bounds\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"elevation\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}},\\"foreground\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"height\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"keyedTags\\":{},\\"layoutDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"layoutParams\\":{\\"height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"margin\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"padding\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"pivot\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"position\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"rotation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"scale\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"state\\":{\\"activated\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"enabled\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"focused\\":{},\\"selected\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false}},\\"tag\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"}},\\"textAlignment\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"textDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"translation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"visibility\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"width\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}}},\\"ViewGroup\\":{\\"clipChildren\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"clipToPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"layoutMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LAYOUT_MODE_CLIP_BOUNDS\\"}}},\\"extraInfo\\":{\\"focused\\":false,\\"hasAXNode\\":true},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"ActionMenuView\\"}", - "{\\"attributes\\":[{\\"name\\":\\"id\\",\\"value\\":\\"@android:id/action_mode_bar_stub\\"}],\\"children\\":[],\\"data\\":{\\"View\\":{\\"alpha\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"background\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"bounds\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"elevation\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}},\\"foreground\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"height\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}},\\"keyedTags\\":{},\\"layoutDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"layoutParams\\":{\\"gravity\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"margin\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"weight\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"padding\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"pivot\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"position\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"rotation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"scale\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"state\\":{\\"activated\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"enabled\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"focused\\":{},\\"selected\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false}},\\"tag\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"}},\\"textAlignment\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"textDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"translation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"visibility\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"width\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}}}},\\"extraInfo\\":{\\"focused\\":false,\\"hasAXNode\\":true},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"ViewStub\\"}", - "{\\"attributes\\":[{\\"name\\":\\"id\\",\\"value\\":\\"@android:id/content\\"}],\\"children\\":[\\"PLACEHOLDER\\"],\\"data\\":{\\"View\\":{\\"alpha\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"background\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"bounds\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"elevation\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}},\\"foreground\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"height\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"keyedTags\\":{},\\"layoutDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"layoutParams\\":{\\"height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"margin\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"padding\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"pivot\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"position\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"rotation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"scale\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"state\\":{\\"activated\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"enabled\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"focused\\":{},\\"selected\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false}},\\"tag\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"}},\\"textAlignment\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"textDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"translation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"visibility\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"width\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}}},\\"ViewGroup\\":{\\"clipChildren\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"clipToPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"layoutMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LAYOUT_MODE_CLIP_BOUNDS\\"}}},\\"extraInfo\\":{\\"focused\\":false,\\"hasAXNode\\":true},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"ContentFrameLayout\\"}", - "{\\"attributes\\":[{\\"name\\":\\"id\\",\\"value\\":\\"@id/action_bar\\"}],\\"children\\":[\\"PLACEHOLDER\\",\\"PLACEHOLDER\\"],\\"data\\":{\\"View\\":{\\"alpha\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"background\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"bounds\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"elevation\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}},\\"foreground\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"height\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"keyedTags\\":{},\\"layoutDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"layoutParams\\":{\\"gravity\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"margin\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"padding\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"pivot\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"position\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"rotation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"scale\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"state\\":{\\"activated\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"enabled\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"focused\\":{},\\"selected\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false}},\\"tag\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"}},\\"textAlignment\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"textDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"translation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"visibility\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"width\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}}},\\"ViewGroup\\":{\\"clipChildren\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"clipToPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"layoutMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LAYOUT_MODE_CLIP_BOUNDS\\"}}},\\"extraInfo\\":{\\"focused\\":false,\\"hasAXNode\\":true},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"Toolbar\\"}", - "{\\"attributes\\":[{\\"name\\":\\"id\\",\\"value\\":\\"@id/action_bar_container\\"}],\\"children\\":[\\"PLACEHOLDER\\",\\"PLACEHOLDER\\"],\\"data\\":{\\"View\\":{\\"alpha\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"background\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"bounds\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"elevation\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"foreground\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"height\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"keyedTags\\":{},\\"layoutDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"layoutParams\\":{\\"height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"margin\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"padding\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"pivot\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"position\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"rotation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"scale\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"state\\":{\\"activated\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"enabled\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"focused\\":{},\\"selected\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false}},\\"tag\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"}},\\"textAlignment\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"textDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"translation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"visibility\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"width\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}}},\\"ViewGroup\\":{\\"clipChildren\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"clipToPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"layoutMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LAYOUT_MODE_CLIP_BOUNDS\\"}}},\\"extraInfo\\":{\\"focused\\":false,\\"hasAXNode\\":true},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"ActionBarContainer\\"}", - "{\\"attributes\\":[{\\"name\\":\\"id\\",\\"value\\":\\"@id/action_context_bar\\"}],\\"children\\":[],\\"data\\":{\\"View\\":{\\"alpha\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"background\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"bounds\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"elevation\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}},\\"foreground\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"height\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}},\\"keyedTags\\":{},\\"layoutDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"layoutParams\\":{\\"gravity\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"margin\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"padding\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"pivot\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"position\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"rotation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"scale\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"state\\":{\\"activated\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"enabled\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"focused\\":{},\\"selected\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false}},\\"tag\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"}},\\"textAlignment\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"textDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"translation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"visibility\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"width\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}}},\\"ViewGroup\\":{\\"clipChildren\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"clipToPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"layoutMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LAYOUT_MODE_CLIP_BOUNDS\\"}}},\\"extraInfo\\":{\\"focused\\":false,\\"hasAXNode\\":true},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"ActionBarContextView\\"}", - "{\\"attributes\\":[{\\"name\\":\\"id\\",\\"value\\":\\"@id/decor_content_parent\\"}],\\"children\\":[\\"PLACEHOLDER\\",\\"PLACEHOLDER\\"],\\"data\\":{\\"View\\":{\\"alpha\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"background\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"bounds\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"elevation\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}},\\"foreground\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"height\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"keyedTags\\":{},\\"layoutDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"layoutParams\\":{\\"gravity\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"margin\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"padding\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"pivot\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"position\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"rotation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"scale\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"state\\":{\\"activated\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"enabled\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"focused\\":{},\\"selected\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false}},\\"tag\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"}},\\"textAlignment\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"textDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"translation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"visibility\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"width\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}}},\\"ViewGroup\\":{\\"clipChildren\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"clipToPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"layoutMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LAYOUT_MODE_CLIP_BOUNDS\\"}}},\\"extraInfo\\":{\\"focused\\":false,\\"hasAXNode\\":true},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"ActionBarOverlayLayout\\"}", - "{\\"attributes\\":[{\\"name\\":\\"key\\",\\"value\\":\\"1\\"}],\\"children\\":[\\"PLACEHOLDER\\",\\"PLACEHOLDER\\",\\"PLACEHOLDER\\",\\"PLACEHOLDER\\",\\"PLACEHOLDER\\"],\\"data\\":{\\"Layout\\":{\\"align-content\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"STRETCH\\"},\\"align-items\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"STRETCH\\"},\\"align-self\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"AUTO\\"},\\"aspect-ratio\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"background\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"border\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"direction\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LTR\\"},\\"flex-basis\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"auto\\"},\\"flex-direction\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"COLUMN\\"},\\"flex-grow\\":{\\"__mutable__\\":true,\\"__type__\\":\\"number\\",\\"value\\":0},\\"flex-shrink\\":{\\"__mutable__\\":true,\\"__type__\\":\\"number\\",\\"value\\":1},\\"foreground\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"height\\":\\"PLACEHOLDER\\",\\"justify-content\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"FLEX_START\\"},\\"margin\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"max-height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"max-width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"min-height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"min-width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"padding\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"position\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"position-type\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"RELATIVE\\"},\\"width\\":\\"PLACEHOLDER\\"},\\"State\\":{\\"displayImage\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false}}},\\"decoration\\":\\"litho\\",\\"extraInfo\\":{\\"linkedAXNode\\":\\"PLACEHOLDER\\"},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"RootComponent\\"}", - "{\\"attributes\\":[{\\"name\\":\\"key\\",\\"value\\":\\"1\\"}],\\"children\\":[\\"PLACEHOLDER\\"],\\"data\\":{\\"Layout\\":{\\"align-content\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"STRETCH\\"},\\"align-items\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"STRETCH\\"},\\"align-self\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"AUTO\\"},\\"aspect-ratio\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"background\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"border\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"direction\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LTR\\"},\\"flex-basis\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"auto\\"},\\"flex-direction\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"COLUMN\\"},\\"flex-grow\\":{\\"__mutable__\\":true,\\"__type__\\":\\"number\\",\\"value\\":0},\\"flex-shrink\\":{\\"__mutable__\\":true,\\"__type__\\":\\"number\\",\\"value\\":1},\\"foreground\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"height\\":\\"PLACEHOLDER\\",\\"justify-content\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"FLEX_START\\"},\\"margin\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"max-height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"max-width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"min-height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"min-width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"padding\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"position\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"position-type\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"RELATIVE\\"},\\"width\\":\\"PLACEHOLDER\\"},\\"Props\\":{\\"accessibleClickableSpans\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"breakStrategy\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"clickableSpanExpandedOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"clipToBounds\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":true},\\"customEllipsisText\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\"},\\"ellipsize\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"extraSpacing\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"glyphWarming\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"highlightColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"highlightEndOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"highlightStartOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"hyphenationFrequency\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"isSingleLine\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"justificationMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"letterSpacing\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"lineHeight\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":3.4028235e+38},\\"linkColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"maxEms\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"maxLines\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":2147483647},\\"maxTextWidth\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":2147483647},\\"minEms\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"minLines\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-2147483648},\\"minTextWidth\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"minimallyWide\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"minimallyWideThreshold\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":-7829368},\\"shadowDx\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowDy\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowRadius\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shouldIncludeFontPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":true},\\"spacingMultiplier\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":1},\\"spanListener\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"text\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"Tap to hit get request\\"},\\"textAlignment\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"ALIGN_NORMAL\\"},\\"textColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"textColorStateList\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"ColorStateList{mThemeAttrs=nullmChangingConfigurations=0mStateSpecs=[[0]]mColors=[-16777216]mDefaultColor=-16777216}\\"},\\"textDirection\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"textOffsetOnTouchHandler\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"textSize\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":20},\\"textStyle\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"typeface\\":\\"PLACEHOLDER\\",\\"verticalGravity\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"TOP\\"}}},\\"decoration\\":\\"litho\\",\\"extraInfo\\":{\\"linkedAXNode\\":\\"PLACEHOLDER\\"},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"Text\\"}", - "{\\"attributes\\":[{\\"name\\":\\"key\\",\\"value\\":\\"2\\"}],\\"children\\":[\\"PLACEHOLDER\\"],\\"data\\":{\\"Layout\\":{\\"align-content\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"STRETCH\\"},\\"align-items\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"STRETCH\\"},\\"align-self\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"AUTO\\"},\\"aspect-ratio\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"background\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"border\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"direction\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LTR\\"},\\"flex-basis\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"auto\\"},\\"flex-direction\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"COLUMN\\"},\\"flex-grow\\":{\\"__mutable__\\":true,\\"__type__\\":\\"number\\",\\"value\\":0},\\"flex-shrink\\":{\\"__mutable__\\":true,\\"__type__\\":\\"number\\",\\"value\\":1},\\"foreground\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"height\\":\\"PLACEHOLDER\\",\\"justify-content\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"FLEX_START\\"},\\"margin\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"max-height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"max-width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"min-height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"min-width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"padding\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"position\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"position-type\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"RELATIVE\\"},\\"width\\":\\"PLACEHOLDER\\"},\\"Props\\":{\\"accessibleClickableSpans\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"breakStrategy\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"clickableSpanExpandedOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"clipToBounds\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":true},\\"customEllipsisText\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\"},\\"ellipsize\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"extraSpacing\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"glyphWarming\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"highlightColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"highlightEndOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"highlightStartOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"hyphenationFrequency\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"isSingleLine\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"justificationMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"letterSpacing\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"lineHeight\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":3.4028235e+38},\\"linkColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"maxEms\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"maxLines\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":2147483647},\\"maxTextWidth\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":2147483647},\\"minEms\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"minLines\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-2147483648},\\"minTextWidth\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"minimallyWide\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"minimallyWideThreshold\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":-7829368},\\"shadowDx\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowDy\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowRadius\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shouldIncludeFontPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":true},\\"spacingMultiplier\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":1},\\"spanListener\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"text\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"Tap to hit post request\\"},\\"textAlignment\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"ALIGN_NORMAL\\"},\\"textColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"textColorStateList\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"ColorStateList{mThemeAttrs=nullmChangingConfigurations=0mStateSpecs=[[0]]mColors=[-16777216]mDefaultColor=-16777216}\\"},\\"textDirection\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"textOffsetOnTouchHandler\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"textSize\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":20},\\"textStyle\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"typeface\\":\\"PLACEHOLDER\\",\\"verticalGravity\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"TOP\\"}}},\\"decoration\\":\\"litho\\",\\"extraInfo\\":{\\"linkedAXNode\\":\\"PLACEHOLDER\\"},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"Text\\"}", - "{\\"attributes\\":[{\\"name\\":\\"key\\",\\"value\\":\\"3\\"}],\\"children\\":[\\"PLACEHOLDER\\"],\\"data\\":{\\"Layout\\":{\\"align-content\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"STRETCH\\"},\\"align-items\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"STRETCH\\"},\\"align-self\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"AUTO\\"},\\"aspect-ratio\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"background\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"border\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"direction\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LTR\\"},\\"flex-basis\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"auto\\"},\\"flex-direction\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"COLUMN\\"},\\"flex-grow\\":{\\"__mutable__\\":true,\\"__type__\\":\\"number\\",\\"value\\":0},\\"flex-shrink\\":{\\"__mutable__\\":true,\\"__type__\\":\\"number\\",\\"value\\":1},\\"foreground\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"height\\":\\"PLACEHOLDER\\",\\"justify-content\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"FLEX_START\\"},\\"margin\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"max-height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"max-width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"min-height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"min-width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"padding\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"position\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"position-type\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"RELATIVE\\"},\\"width\\":\\"PLACEHOLDER\\"},\\"Props\\":{\\"accessibleClickableSpans\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"breakStrategy\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"clickableSpanExpandedOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"clipToBounds\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":true},\\"customEllipsisText\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\"},\\"ellipsize\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"extraSpacing\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"glyphWarming\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"highlightColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"highlightEndOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"highlightStartOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"hyphenationFrequency\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"isSingleLine\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"justificationMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"letterSpacing\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"lineHeight\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":3.4028235e+38},\\"linkColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"maxEms\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"maxLines\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":2147483647},\\"maxTextWidth\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":2147483647},\\"minEms\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"minLines\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-2147483648},\\"minTextWidth\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"minimallyWide\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"minimallyWideThreshold\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":-7829368},\\"shadowDx\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowDy\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowRadius\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shouldIncludeFontPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":true},\\"spacingMultiplier\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":1},\\"spanListener\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"text\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"Trigger Notification\\"},\\"textAlignment\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"ALIGN_NORMAL\\"},\\"textColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"textColorStateList\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"ColorStateList{mThemeAttrs=nullmChangingConfigurations=0mStateSpecs=[[0]]mColors=[-16777216]mDefaultColor=-16777216}\\"},\\"textDirection\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"textOffsetOnTouchHandler\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"textSize\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":20},\\"textStyle\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"typeface\\":\\"PLACEHOLDER\\",\\"verticalGravity\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"TOP\\"}}},\\"decoration\\":\\"litho\\",\\"extraInfo\\":{\\"linkedAXNode\\":\\"PLACEHOLDER\\"},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"Text\\"}", - "{\\"attributes\\":[{\\"name\\":\\"key\\",\\"value\\":\\"4\\"}],\\"children\\":[\\"PLACEHOLDER\\"],\\"data\\":{\\"Layout\\":{\\"align-content\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"STRETCH\\"},\\"align-items\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"STRETCH\\"},\\"align-self\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"AUTO\\"},\\"aspect-ratio\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"background\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"border\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"direction\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LTR\\"},\\"flex-basis\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"auto\\"},\\"flex-direction\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"COLUMN\\"},\\"flex-grow\\":{\\"__mutable__\\":true,\\"__type__\\":\\"number\\",\\"value\\":0},\\"flex-shrink\\":{\\"__mutable__\\":true,\\"__type__\\":\\"number\\",\\"value\\":1},\\"foreground\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"height\\":\\"PLACEHOLDER\\",\\"justify-content\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"FLEX_START\\"},\\"margin\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"max-height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"max-width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"min-height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"min-width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"padding\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"position\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"position-type\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"RELATIVE\\"},\\"width\\":\\"PLACEHOLDER\\"},\\"Props\\":{\\"accessibleClickableSpans\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"breakStrategy\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"clickableSpanExpandedOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"clipToBounds\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":true},\\"customEllipsisText\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\"},\\"ellipsize\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"extraSpacing\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"glyphWarming\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"highlightColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"highlightEndOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"highlightStartOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"hyphenationFrequency\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"isSingleLine\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"justificationMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"letterSpacing\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"lineHeight\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":3.4028235e+38},\\"linkColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"maxEms\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"maxLines\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":2147483647},\\"maxTextWidth\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":2147483647},\\"minEms\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"minLines\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-2147483648},\\"minTextWidth\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"minimallyWide\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"minimallyWideThreshold\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":-7829368},\\"shadowDx\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowDy\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowRadius\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shouldIncludeFontPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":true},\\"spacingMultiplier\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":1},\\"spanListener\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"text\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"Diagnose connection issues\\"},\\"textAlignment\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"ALIGN_NORMAL\\"},\\"textColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"textColorStateList\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"ColorStateList{mThemeAttrs=nullmChangingConfigurations=0mStateSpecs=[[0]]mColors=[-16777216]mDefaultColor=-16777216}\\"},\\"textDirection\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"textOffsetOnTouchHandler\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"textSize\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":20},\\"textStyle\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"typeface\\":\\"PLACEHOLDER\\",\\"verticalGravity\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"TOP\\"}}},\\"decoration\\":\\"litho\\",\\"extraInfo\\":{\\"linkedAXNode\\":\\"PLACEHOLDER\\"},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"Text\\"}", - "{\\"attributes\\":[{\\"name\\":\\"key\\",\\"value\\":\\"5\\"}],\\"children\\":[\\"PLACEHOLDER\\"],\\"data\\":{\\"Layout\\":{\\"align-content\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"STRETCH\\"},\\"align-items\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"STRETCH\\"},\\"align-self\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"AUTO\\"},\\"aspect-ratio\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"background\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"border\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"direction\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LTR\\"},\\"flex-basis\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"auto\\"},\\"flex-direction\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"COLUMN\\"},\\"flex-grow\\":{\\"__mutable__\\":true,\\"__type__\\":\\"number\\",\\"value\\":0},\\"flex-shrink\\":{\\"__mutable__\\":true,\\"__type__\\":\\"number\\",\\"value\\":1},\\"foreground\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"height\\":\\"PLACEHOLDER\\",\\"justify-content\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"FLEX_START\\"},\\"margin\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"max-height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"max-width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"min-height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"min-width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"padding\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"position\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"position-type\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"RELATIVE\\"},\\"width\\":\\"PLACEHOLDER\\"},\\"Props\\":{\\"accessibleClickableSpans\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"breakStrategy\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"clickableSpanExpandedOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"clipToBounds\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":true},\\"customEllipsisText\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\"},\\"ellipsize\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"extraSpacing\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"glyphWarming\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"highlightColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"highlightEndOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"highlightStartOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"hyphenationFrequency\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"isSingleLine\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"justificationMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"letterSpacing\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"lineHeight\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":3.4028235e+38},\\"linkColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"maxEms\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"maxLines\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":2147483647},\\"maxTextWidth\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":2147483647},\\"minEms\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"minLines\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-2147483648},\\"minTextWidth\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"minimallyWide\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"minimallyWideThreshold\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":-7829368},\\"shadowDx\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowDy\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowRadius\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shouldIncludeFontPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":true},\\"spacingMultiplier\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":1},\\"spanListener\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"text\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"Load Fresco image\\"},\\"textAlignment\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"ALIGN_NORMAL\\"},\\"textColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"textColorStateList\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"ColorStateList{mThemeAttrs=nullmChangingConfigurations=0mStateSpecs=[[0]]mColors=[-16777216]mDefaultColor=-16777216}\\"},\\"textDirection\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"textOffsetOnTouchHandler\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"textSize\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":20},\\"textStyle\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"typeface\\":\\"PLACEHOLDER\\",\\"verticalGravity\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"TOP\\"}}},\\"decoration\\":\\"litho\\",\\"extraInfo\\":{\\"linkedAXNode\\":\\"PLACEHOLDER\\"},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"Text\\"}", + "{\\"attributes\\":[],\\"children\\":[],\\"data\\":{\\"TextView\\":{\\"text\\":{\\"__mutable__\\":true,\\"__type__\\":\\"text\\",\\"value\\":\\"Flipper\\"},\\"textColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":-570425344},\\"textSize\\":{\\"__mutable__\\":true,\\"__type__\\":\\"number\\",\\"value\\":20}},\\"View\\":{\\"alpha\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"background\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"bounds\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"elevation\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}},\\"foreground\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"height\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"keyedTags\\":{},\\"layoutDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"layoutParams\\":{\\"height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"margin\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"padding\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"pivot\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"position\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"rotation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"scale\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"state\\":{\\"activated\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"enabled\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"focused\\":{},\\"selected\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false}},\\"tag\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"}},\\"textAlignment\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"textDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"translation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"visibility\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"width\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}}}},\\"extraInfo\\":{\\"linkedNode\\":\\"PLACEHOLDER\\"},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"AppCompatTextView\\"}", + "{\\"attributes\\":[],\\"children\\":[],\\"data\\":{\\"View\\":{\\"alpha\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"background\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"bounds\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"elevation\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}},\\"foreground\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"height\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"keyedTags\\":{},\\"layoutDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"layoutParams\\":{\\"height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"margin\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"padding\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"pivot\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"position\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"rotation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"scale\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"state\\":{\\"activated\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"enabled\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"focused\\":{},\\"selected\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false}},\\"tag\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"}},\\"textAlignment\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"textDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"translation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"visibility\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"width\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}}},\\"ViewGroup\\":{\\"clipChildren\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"clipToPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"layoutMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LAYOUT_MODE_CLIP_BOUNDS\\"}}},\\"extraInfo\\":{\\"linkedNode\\":\\"PLACEHOLDER\\"},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"ActionMenuView\\"}", + "{\\"attributes\\":[{\\"name\\":\\"id\\",\\"value\\":\\"@android:id/action_mode_bar_stub\\"}],\\"children\\":[],\\"data\\":{\\"View\\":{\\"alpha\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"background\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"bounds\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"elevation\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}},\\"foreground\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"height\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}},\\"keyedTags\\":{},\\"layoutDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"layoutParams\\":{\\"gravity\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"margin\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"weight\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"padding\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"pivot\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"position\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"rotation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"scale\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"state\\":{\\"activated\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"enabled\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"focused\\":{},\\"selected\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false}},\\"tag\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"}},\\"textAlignment\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"textDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"translation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"visibility\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"width\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}}}},\\"extraInfo\\":{\\"linkedNode\\":\\"PLACEHOLDER\\"},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"ViewStub\\"}", + "{\\"attributes\\":[{\\"name\\":\\"id\\",\\"value\\":\\"@android:id/content\\"}],\\"children\\":[\\"PLACEHOLDER\\"],\\"data\\":{\\"View\\":{\\"alpha\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"background\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"bounds\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"elevation\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}},\\"foreground\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"height\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"keyedTags\\":{},\\"layoutDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"layoutParams\\":{\\"height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"margin\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"padding\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"pivot\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"position\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"rotation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"scale\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"state\\":{\\"activated\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"enabled\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"focused\\":{},\\"selected\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false}},\\"tag\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"}},\\"textAlignment\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"textDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"translation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"visibility\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"width\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}}},\\"ViewGroup\\":{\\"clipChildren\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"clipToPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"layoutMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LAYOUT_MODE_CLIP_BOUNDS\\"}}},\\"extraInfo\\":{\\"linkedNode\\":\\"PLACEHOLDER\\"},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"ContentFrameLayout\\"}", + "{\\"attributes\\":[{\\"name\\":\\"id\\",\\"value\\":\\"@id/action_bar\\"}],\\"children\\":[\\"PLACEHOLDER\\",\\"PLACEHOLDER\\"],\\"data\\":{\\"View\\":{\\"alpha\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"background\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"bounds\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"elevation\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}},\\"foreground\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"height\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"keyedTags\\":{},\\"layoutDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"layoutParams\\":{\\"gravity\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"margin\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"padding\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"pivot\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"position\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"rotation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"scale\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"state\\":{\\"activated\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"enabled\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"focused\\":{},\\"selected\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false}},\\"tag\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"}},\\"textAlignment\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"textDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"translation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"visibility\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"width\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}}},\\"ViewGroup\\":{\\"clipChildren\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"clipToPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"layoutMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LAYOUT_MODE_CLIP_BOUNDS\\"}}},\\"extraInfo\\":{\\"linkedNode\\":\\"PLACEHOLDER\\"},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"Toolbar\\"}", + "{\\"attributes\\":[{\\"name\\":\\"id\\",\\"value\\":\\"@id/action_bar_container\\"}],\\"children\\":[\\"PLACEHOLDER\\",\\"PLACEHOLDER\\"],\\"data\\":{\\"View\\":{\\"alpha\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"background\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"bounds\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"elevation\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"foreground\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"height\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"keyedTags\\":{},\\"layoutDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"layoutParams\\":{\\"height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"margin\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"padding\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"pivot\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"position\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"rotation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"scale\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"state\\":{\\"activated\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"enabled\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"focused\\":{},\\"selected\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false}},\\"tag\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"}},\\"textAlignment\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"textDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"translation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"visibility\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"width\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}}},\\"ViewGroup\\":{\\"clipChildren\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"clipToPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"layoutMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LAYOUT_MODE_CLIP_BOUNDS\\"}}},\\"extraInfo\\":{\\"linkedNode\\":\\"PLACEHOLDER\\"},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"ActionBarContainer\\"}", + "{\\"attributes\\":[{\\"name\\":\\"id\\",\\"value\\":\\"@id/action_context_bar\\"}],\\"children\\":[],\\"data\\":{\\"View\\":{\\"alpha\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"background\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"bounds\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"elevation\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}},\\"foreground\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"height\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}},\\"keyedTags\\":{},\\"layoutDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"layoutParams\\":{\\"gravity\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"margin\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"padding\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"pivot\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"position\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"rotation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"scale\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"state\\":{\\"activated\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"enabled\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"focused\\":{},\\"selected\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false}},\\"tag\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"}},\\"textAlignment\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"textDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"translation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"visibility\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"width\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}}},\\"ViewGroup\\":{\\"clipChildren\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"clipToPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"layoutMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LAYOUT_MODE_CLIP_BOUNDS\\"}}},\\"extraInfo\\":{\\"linkedNode\\":\\"PLACEHOLDER\\"},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"ActionBarContextView\\"}", + "{\\"attributes\\":[{\\"name\\":\\"id\\",\\"value\\":\\"@id/decor_content_parent\\"}],\\"children\\":[\\"PLACEHOLDER\\",\\"PLACEHOLDER\\"],\\"data\\":{\\"View\\":{\\"alpha\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"background\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"bounds\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"elevation\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{}},\\"foreground\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"c\\",\\"1\\":\\"o\\",\\"2\\":\\"l\\",\\"3\\":\\"o\\",\\"4\\":\\"r\\"},\\"value\\":{}},\\"height\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"keyedTags\\":{},\\"layoutDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"layoutParams\\":{\\"gravity\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"},\\"margin\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"padding\\":{\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"pivot\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"position\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"rotation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"scale\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"}},\\"state\\":{\\"activated\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"enabled\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"PLACEHOLDER\\"},\\"focused\\":{},\\"selected\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false}},\\"tag\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"}},\\"textAlignment\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"textDirection\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"translation\\":{\\"x\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"y\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"z\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0}},\\"visibility\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"e\\",\\"1\\":\\"n\\",\\"2\\":\\"u\\",\\"3\\":\\"m\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}},\\"width\\":{\\"__mutable__\\":{},\\"__type__\\":{\\"0\\":\\"a\\",\\"1\\":\\"u\\",\\"2\\":\\"t\\",\\"3\\":\\"o\\"},\\"value\\":{\\"0\\":\\"P\\",\\"1\\":\\"L\\",\\"10\\":\\"R\\",\\"2\\":\\"A\\",\\"3\\":\\"C\\",\\"4\\":\\"E\\",\\"5\\":\\"H\\",\\"6\\":\\"O\\",\\"7\\":\\"L\\",\\"8\\":\\"D\\",\\"9\\":\\"E\\"}}},\\"ViewGroup\\":{\\"clipChildren\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"clipToPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"boolean\\",\\"value\\":true},\\"layoutMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LAYOUT_MODE_CLIP_BOUNDS\\"}}},\\"extraInfo\\":{\\"linkedNode\\":\\"PLACEHOLDER\\"},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"ActionBarOverlayLayout\\"}", + "{\\"attributes\\":[{\\"name\\":\\"key\\",\\"value\\":\\"1\\"}],\\"children\\":[\\"PLACEHOLDER\\",\\"PLACEHOLDER\\",\\"PLACEHOLDER\\",\\"PLACEHOLDER\\",\\"PLACEHOLDER\\"],\\"data\\":{\\"Layout\\":{\\"align-content\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"STRETCH\\"},\\"align-items\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"STRETCH\\"},\\"align-self\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"AUTO\\"},\\"aspect-ratio\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"background\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"border\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"direction\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LTR\\"},\\"flex-basis\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"auto\\"},\\"flex-direction\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"COLUMN\\"},\\"flex-grow\\":{\\"__mutable__\\":true,\\"__type__\\":\\"number\\",\\"value\\":0},\\"flex-shrink\\":{\\"__mutable__\\":true,\\"__type__\\":\\"number\\",\\"value\\":1},\\"foreground\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"height\\":\\"PLACEHOLDER\\",\\"justify-content\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"FLEX_START\\"},\\"margin\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"max-height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"max-width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"min-height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"min-width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"padding\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"position\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"position-type\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"RELATIVE\\"},\\"width\\":\\"PLACEHOLDER\\"},\\"State\\":{\\"displayImage\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false}}},\\"decoration\\":\\"litho\\",\\"extraInfo\\":{\\"expandWithParent\\":true,\\"linkedNode\\":\\"PLACEHOLDER\\"},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"RootComponent\\"}", + "{\\"attributes\\":[{\\"name\\":\\"key\\",\\"value\\":\\"1\\"}],\\"children\\":[\\"PLACEHOLDER\\"],\\"data\\":{\\"Layout\\":{\\"align-content\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"STRETCH\\"},\\"align-items\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"STRETCH\\"},\\"align-self\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"AUTO\\"},\\"aspect-ratio\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"background\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"border\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"direction\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LTR\\"},\\"flex-basis\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"auto\\"},\\"flex-direction\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"COLUMN\\"},\\"flex-grow\\":{\\"__mutable__\\":true,\\"__type__\\":\\"number\\",\\"value\\":0},\\"flex-shrink\\":{\\"__mutable__\\":true,\\"__type__\\":\\"number\\",\\"value\\":1},\\"foreground\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"height\\":\\"PLACEHOLDER\\",\\"justify-content\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"FLEX_START\\"},\\"margin\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"max-height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"max-width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"min-height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"min-width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"padding\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"position\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"position-type\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"RELATIVE\\"},\\"width\\":\\"PLACEHOLDER\\"},\\"Props\\":{\\"accessibleClickableSpans\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"breakStrategy\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"clickableSpanExpandedOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"clipToBounds\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":true},\\"customEllipsisText\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\"},\\"ellipsize\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"extraSpacing\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"glyphWarming\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"highlightColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"highlightEndOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"highlightStartOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"hyphenationFrequency\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"isSingleLine\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"justificationMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"letterSpacing\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"lineHeight\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":3.4028235e+38},\\"linkColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"maxEms\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"maxLines\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":2147483647},\\"maxTextWidth\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":2147483647},\\"minEms\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"minLines\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-2147483648},\\"minTextWidth\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"minimallyWide\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"minimallyWideThreshold\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":-7829368},\\"shadowDx\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowDy\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowRadius\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shouldIncludeFontPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":true},\\"spacingMultiplier\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":1},\\"spanListener\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"text\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"Tap to hit get request\\"},\\"textAlignment\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"ALIGN_NORMAL\\"},\\"textColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"textColorStateList\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"ColorStateList{mThemeAttrs=nullmChangingConfigurations=0mStateSpecs=[[0]]mColors=[-16777216]mDefaultColor=-16777216}\\"},\\"textDirection\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"textOffsetOnTouchHandler\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"textSize\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":20},\\"textStyle\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"typeface\\":\\"PLACEHOLDER\\",\\"verticalGravity\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"TOP\\"}}},\\"decoration\\":\\"litho\\",\\"extraInfo\\":{\\"linkedNode\\":\\"PLACEHOLDER\\"},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"Text\\"}", + "{\\"attributes\\":[{\\"name\\":\\"key\\",\\"value\\":\\"2\\"}],\\"children\\":[\\"PLACEHOLDER\\"],\\"data\\":{\\"Layout\\":{\\"align-content\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"STRETCH\\"},\\"align-items\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"STRETCH\\"},\\"align-self\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"AUTO\\"},\\"aspect-ratio\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"background\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"border\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"direction\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LTR\\"},\\"flex-basis\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"auto\\"},\\"flex-direction\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"COLUMN\\"},\\"flex-grow\\":{\\"__mutable__\\":true,\\"__type__\\":\\"number\\",\\"value\\":0},\\"flex-shrink\\":{\\"__mutable__\\":true,\\"__type__\\":\\"number\\",\\"value\\":1},\\"foreground\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"height\\":\\"PLACEHOLDER\\",\\"justify-content\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"FLEX_START\\"},\\"margin\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"max-height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"max-width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"min-height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"min-width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"padding\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"position\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"position-type\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"RELATIVE\\"},\\"width\\":\\"PLACEHOLDER\\"},\\"Props\\":{\\"accessibleClickableSpans\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"breakStrategy\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"clickableSpanExpandedOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"clipToBounds\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":true},\\"customEllipsisText\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\"},\\"ellipsize\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"extraSpacing\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"glyphWarming\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"highlightColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"highlightEndOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"highlightStartOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"hyphenationFrequency\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"isSingleLine\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"justificationMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"letterSpacing\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"lineHeight\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":3.4028235e+38},\\"linkColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"maxEms\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"maxLines\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":2147483647},\\"maxTextWidth\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":2147483647},\\"minEms\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"minLines\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-2147483648},\\"minTextWidth\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"minimallyWide\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"minimallyWideThreshold\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":-7829368},\\"shadowDx\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowDy\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowRadius\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shouldIncludeFontPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":true},\\"spacingMultiplier\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":1},\\"spanListener\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"text\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"Tap to hit post request\\"},\\"textAlignment\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"ALIGN_NORMAL\\"},\\"textColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"textColorStateList\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"ColorStateList{mThemeAttrs=nullmChangingConfigurations=0mStateSpecs=[[0]]mColors=[-16777216]mDefaultColor=-16777216}\\"},\\"textDirection\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"textOffsetOnTouchHandler\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"textSize\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":20},\\"textStyle\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"typeface\\":\\"PLACEHOLDER\\",\\"verticalGravity\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"TOP\\"}}},\\"decoration\\":\\"litho\\",\\"extraInfo\\":{\\"linkedNode\\":\\"PLACEHOLDER\\"},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"Text\\"}", + "{\\"attributes\\":[{\\"name\\":\\"key\\",\\"value\\":\\"3\\"}],\\"children\\":[\\"PLACEHOLDER\\"],\\"data\\":{\\"Layout\\":{\\"align-content\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"STRETCH\\"},\\"align-items\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"STRETCH\\"},\\"align-self\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"AUTO\\"},\\"aspect-ratio\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"background\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"border\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"direction\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LTR\\"},\\"flex-basis\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"auto\\"},\\"flex-direction\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"COLUMN\\"},\\"flex-grow\\":{\\"__mutable__\\":true,\\"__type__\\":\\"number\\",\\"value\\":0},\\"flex-shrink\\":{\\"__mutable__\\":true,\\"__type__\\":\\"number\\",\\"value\\":1},\\"foreground\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"height\\":\\"PLACEHOLDER\\",\\"justify-content\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"FLEX_START\\"},\\"margin\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"max-height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"max-width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"min-height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"min-width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"padding\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"position\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"position-type\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"RELATIVE\\"},\\"width\\":\\"PLACEHOLDER\\"},\\"Props\\":{\\"accessibleClickableSpans\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"breakStrategy\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"clickableSpanExpandedOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"clipToBounds\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":true},\\"customEllipsisText\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\"},\\"ellipsize\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"extraSpacing\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"glyphWarming\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"highlightColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"highlightEndOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"highlightStartOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"hyphenationFrequency\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"isSingleLine\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"justificationMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"letterSpacing\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"lineHeight\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":3.4028235e+38},\\"linkColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"maxEms\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"maxLines\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":2147483647},\\"maxTextWidth\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":2147483647},\\"minEms\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"minLines\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-2147483648},\\"minTextWidth\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"minimallyWide\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"minimallyWideThreshold\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":-7829368},\\"shadowDx\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowDy\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowRadius\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shouldIncludeFontPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":true},\\"spacingMultiplier\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":1},\\"spanListener\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"text\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"Trigger Notification\\"},\\"textAlignment\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"ALIGN_NORMAL\\"},\\"textColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"textColorStateList\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"ColorStateList{mThemeAttrs=nullmChangingConfigurations=0mStateSpecs=[[0]]mColors=[-16777216]mDefaultColor=-16777216}\\"},\\"textDirection\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"textOffsetOnTouchHandler\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"textSize\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":20},\\"textStyle\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"typeface\\":\\"PLACEHOLDER\\",\\"verticalGravity\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"TOP\\"}}},\\"decoration\\":\\"litho\\",\\"extraInfo\\":{\\"linkedNode\\":\\"PLACEHOLDER\\"},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"Text\\"}", + "{\\"attributes\\":[{\\"name\\":\\"key\\",\\"value\\":\\"4\\"}],\\"children\\":[\\"PLACEHOLDER\\"],\\"data\\":{\\"Layout\\":{\\"align-content\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"STRETCH\\"},\\"align-items\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"STRETCH\\"},\\"align-self\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"AUTO\\"},\\"aspect-ratio\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"background\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"border\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"direction\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LTR\\"},\\"flex-basis\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"auto\\"},\\"flex-direction\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"COLUMN\\"},\\"flex-grow\\":{\\"__mutable__\\":true,\\"__type__\\":\\"number\\",\\"value\\":0},\\"flex-shrink\\":{\\"__mutable__\\":true,\\"__type__\\":\\"number\\",\\"value\\":1},\\"foreground\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"height\\":\\"PLACEHOLDER\\",\\"justify-content\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"FLEX_START\\"},\\"margin\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"max-height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"max-width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"min-height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"min-width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"padding\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"position\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"position-type\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"RELATIVE\\"},\\"width\\":\\"PLACEHOLDER\\"},\\"Props\\":{\\"accessibleClickableSpans\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"breakStrategy\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"clickableSpanExpandedOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"clipToBounds\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":true},\\"customEllipsisText\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\"},\\"ellipsize\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"extraSpacing\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"glyphWarming\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"highlightColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"highlightEndOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"highlightStartOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"hyphenationFrequency\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"isSingleLine\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"justificationMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"letterSpacing\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"lineHeight\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":3.4028235e+38},\\"linkColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"maxEms\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"maxLines\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":2147483647},\\"maxTextWidth\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":2147483647},\\"minEms\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"minLines\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-2147483648},\\"minTextWidth\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"minimallyWide\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"minimallyWideThreshold\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":-7829368},\\"shadowDx\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowDy\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowRadius\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shouldIncludeFontPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":true},\\"spacingMultiplier\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":1},\\"spanListener\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"text\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"Diagnose connection issues\\"},\\"textAlignment\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"ALIGN_NORMAL\\"},\\"textColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"textColorStateList\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"ColorStateList{mThemeAttrs=nullmChangingConfigurations=0mStateSpecs=[[0]]mColors=[-16777216]mDefaultColor=-16777216}\\"},\\"textDirection\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"textOffsetOnTouchHandler\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"textSize\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":20},\\"textStyle\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"typeface\\":\\"PLACEHOLDER\\",\\"verticalGravity\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"TOP\\"}}},\\"decoration\\":\\"litho\\",\\"extraInfo\\":{\\"linkedNode\\":\\"PLACEHOLDER\\"},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"Text\\"}", + "{\\"attributes\\":[{\\"name\\":\\"key\\",\\"value\\":\\"5\\"}],\\"children\\":[\\"PLACEHOLDER\\"],\\"data\\":{\\"Layout\\":{\\"align-content\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"STRETCH\\"},\\"align-items\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"STRETCH\\"},\\"align-self\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"AUTO\\"},\\"aspect-ratio\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"background\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"border\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"direction\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"LTR\\"},\\"flex-basis\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"auto\\"},\\"flex-direction\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"COLUMN\\"},\\"flex-grow\\":{\\"__mutable__\\":true,\\"__type__\\":\\"number\\",\\"value\\":0},\\"flex-shrink\\":{\\"__mutable__\\":true,\\"__type__\\":\\"number\\",\\"value\\":1},\\"foreground\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"height\\":\\"PLACEHOLDER\\",\\"justify-content\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"FLEX_START\\"},\\"margin\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"max-height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"max-width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"min-height\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"min-width\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"padding\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"position\\":{\\"all\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"bottom\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"end\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"horizontal\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"left\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"right\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"start\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"top\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"},\\"vertical\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"undefined\\"}},\\"position-type\\":{\\"__mutable__\\":true,\\"__type__\\":\\"enum\\",\\"value\\":\\"RELATIVE\\"},\\"width\\":\\"PLACEHOLDER\\"},\\"Props\\":{\\"accessibleClickableSpans\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"breakStrategy\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"clickableSpanExpandedOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"clipToBounds\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":true},\\"customEllipsisText\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\"},\\"ellipsize\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"extraSpacing\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"glyphWarming\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"highlightColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"highlightEndOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"highlightStartOffset\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"hyphenationFrequency\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"isSingleLine\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"justificationMode\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"letterSpacing\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"lineHeight\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":3.4028235e+38},\\"linkColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"maxEms\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"maxLines\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":2147483647},\\"maxTextWidth\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":2147483647},\\"minEms\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-1},\\"minLines\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":-2147483648},\\"minTextWidth\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"minimallyWide\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":false},\\"minimallyWideThreshold\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":-7829368},\\"shadowDx\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowDy\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shadowRadius\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"shouldIncludeFontPadding\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":true},\\"spacingMultiplier\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":1},\\"spanListener\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"text\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":\\"Load Fresco image\\"},\\"textAlignment\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"ALIGN_NORMAL\\"},\\"textColor\\":{\\"__mutable__\\":true,\\"__type__\\":\\"color\\",\\"value\\":0},\\"textColorStateList\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"ColorStateList{mThemeAttrs=nullmChangingConfigurations=0mStateSpecs=[[0]]mColors=[-16777216]mDefaultColor=-16777216}\\"},\\"textDirection\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"textOffsetOnTouchHandler\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\"},\\"textSize\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":20},\\"textStyle\\":{\\"__mutable__\\":true,\\"__type__\\":\\"auto\\",\\"value\\":0},\\"typeface\\":\\"PLACEHOLDER\\",\\"verticalGravity\\":{\\"__mutable__\\":false,\\"__type__\\":\\"auto\\",\\"value\\":\\"TOP\\"}}},\\"decoration\\":\\"litho\\",\\"extraInfo\\":{\\"linkedNode\\":\\"PLACEHOLDER\\"},\\"id\\":\\"PLACEHOLDER\\",\\"name\\":\\"Text\\"}", ] `; diff --git a/headless-tests/__tests__/headlessIntegrationTests.js b/headless-tests/__tests__/headlessIntegrationTests.js index 690ba6648..8a0a84a62 100644 --- a/headless-tests/__tests__/headlessIntegrationTests.js +++ b/headless-tests/__tests__/headlessIntegrationTests.js @@ -15,7 +15,7 @@ const TEST_TIMEOUT_MS = 30 * 1000; const layoutPathsToExcludeFromSnapshots = [ 'id', 'children.*', - 'extraInfo.linkedAXNode', + 'extraInfo.linkedNode', 'data.View.*.value', 'data.View.*.*.value', 'data.View.*.*.*.value', @@ -197,7 +197,7 @@ test('test layout snapshot stripping', () => { id: 2, children: [1, 2, 3], extraInfo: { - linkedAXNode: 55, + linkedNode: 55, somethingElse: 44, }, data: {View: {bounds: {something: {value: 4}}}}, @@ -216,7 +216,7 @@ test('test layout snapshot stripping', () => { id: 'PLACEHOLDER', children: ['PLACEHOLDER', 'PLACEHOLDER', 'PLACEHOLDER'], extraInfo: { - linkedAXNode: 'PLACEHOLDER', + linkedNode: 'PLACEHOLDER', somethingElse: 44, }, data: {View: {bounds: {something: {value: 'PLACEHOLDER'}}}}, diff --git a/src/plugins/layout/Inspector.js b/src/plugins/layout/Inspector.js index 83052c429..9a51ede73 100644 --- a/src/plugins/layout/Inspector.js +++ b/src/plugins/layout/Inspector.js @@ -147,26 +147,28 @@ export default class Inspector extends Component { if ( ax && - selectedElement !== prevProps.selectedElement && - selectedElement + selectedElement && + selectedElement !== prevProps.selectedElement ) { - // selected element changed, find linked AX element - const linkedAXNode: ?ElementID = this.props.persistedState.elements[ + // selected element in non-AX tree changed, find linked element in AX tree + const newlySelectedElem = this.props.persistedState.elements[ selectedElement - ]?.extraInfo?.linkedAXNode; - this.props.onSelect(linkedAXNode); + ]; + if (newlySelectedElem) { + this.props.onSelect(newlySelectedElem.extraInfo?.linkedNode); + } } else if ( !ax && - selectedAXElement !== prevProps.selectedAXElement && - selectedAXElement + selectedAXElement && + selectedAXElement !== prevProps.selectedAXElement ) { - // selected AX element changed, find linked element - // $FlowFixMe Object.values retunes mixed type - const linkedNode: ?Element = Object.values( - this.props.persistedState.elements, - // $FlowFixMe it's an Element not mixed - ).find((e: Element) => e.extraInfo?.linkedAXNode === selectedAXElement); - this.props.onSelect(linkedNode?.id); + // selected element in AX tree changed, find linked element in non-AX tree + const newlySelectedAXElem = this.props.persistedState.AXelements[ + selectedAXElement + ]; + if (newlySelectedAXElem) { + this.props.onSelect(newlySelectedAXElem.extraInfo?.linkedNode); + } } } diff --git a/src/plugins/layout/index.js b/src/plugins/layout/index.js index 8ab629b52..24ed9347e 100644 --- a/src/plugins/layout/index.js +++ b/src/plugins/layout/index.js @@ -20,6 +20,7 @@ import { Toolbar, Sidebar, DetailSidebar, + VerticalRule, } from 'flipper'; import Inspector from './Inspector'; import ToolbarIcon from './ToolbarIcon'; @@ -168,6 +169,17 @@ export default class Layout extends FlipperPlugin { /> ); + const axInspector = this.state.inAXMode && ( + this.setState({selectedAXElement})} + showsSidebar={true} + ax + /> + ); + + const divider = this.state.inAXMode && ; + return ( {this.state.init && ( @@ -211,23 +223,9 @@ export default class Layout extends FlipperPlugin { - {this.state.inAXMode ? ( - <> - - {inspector} - - - this.setState({selectedAXElement}) - } - showsSidebar={true} - ax - /> - - ) : ( - inspector - )} + {inspector} + {divider} + {axInspector} - - + ); } }